kickbutts / webserver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Birdiary - webserver

Information

Environmental changes can have different causes on local level (e.g. soil sealing) as well as on global level (e.g. climate change). To detect these changes and to find patterns in the reasons for them it is necessary to collect broad environmental data, temporally and spatially. Thereto citizens can play an essential role to collect the data. In particular, we developed a system which enables citizens to monitor the occurrence and distribution of birds and provides the collected data to the public in order that both researchers and citizens can derive conclusions from them. With our automated approach we want to support other citizen science solutions like eBird where contributors manually report their sightings.

Therefore, we built a prototypical bird feeder equipped with several sensors and the infrastructure to process the data collected by the feeder. The feeder is easy to reproduce at a reasonable price by following an open available manual. This allows anyone to build the feeder on their own, enabling a large distribution at many locations. The feeder automatically detects when a bird is visiting it, takes an image of the bird, determines the species and connects the observation with environmental data like the temperature or light intensity. All the collected data are published on a developed open access platform. Incorporating other surrounding factors like the proximity of the feeder station to the next forest or a large street allows it to pursue various questions regarding the occurrence of birds. One of them might ask, how does the immediate environment affect bird abundance? Or do sealed surfaces have a negative effect compared to a flowering garden?

This repository contains the code to run the webserver. All the collected data is send by a feeder which is based on this repository. The repositories are currently still under development, the code for the operation of the feeder as well as for the web server are continuously updated. A corresponding manual for the operation of the system including open source instructions for building the feeder will follow soon.

CountYourBirds is a project by a group of students at the Institute for Geoinformatics at the University of Münster. If you got any questions contact us via: info@birdiary.de.

Installtion

To run the platform you first have to install docker, which then installs all further needed packages and programs. After the installation you can clone and run the platform in development or production environment.

Docker

Linux Users can also use the Installation of a seperate docker engine and compose installation:

Git

Clone Project

git clone https://github.com/Birdiary/webserver.git
cd webserver

Development environment with docker-compose

This project contains one docker-compose configuration (file docker-compose-dev.yml) to run all microservices & databases, and mount the client application directly from the source directory client. If you see an error related to the MongoDB or HTTP request timeouts during the first "up", abort the execution, then try again.

docker-compose --file docker-compose-dev.yml up

The platform is available at http://localhost:8080 and the API at http://localhost:8080/api.

Production environment with docker-compose

This project has another docker-compose configuration for the deployment of a production build (file docker-compose.yml). This configuration has no ui container. Instead the webserver container creates a static production build with the command npm run build using a multi-stage docker file (file nginx/data_visualization/Dockerfile) which is then served through nginx.

To start the platform with the production build:

docker-compose up 

# force rebuild of images
docker-compose up --build

How to Contribute

Thank you for considering contributing to Birdiary. Birdiary is an open source project, and we love to receive contributions from our community — you!

There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code which can be incorporated into Birdiary itself.

We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.

This Repository comprises the code and issues for the webserver. Which means, if you want to contribute to the website wiediversistmeingarten.org or to our API, please contribute here. Whereas when you want to contribute to the station, please use this repository https://github.com/Birdiary/station

Reporting bugs

If you find a security vulnerability, do NOT open an issue. Email info@wiediversistmeingarten.org instead.

If you encounter a bug, check if the bug has already been reported here https://github.com/Birdiary/webserver/issues. If the bug has not been reported, you can open an issue to report the bug here https://github.com/Birdiary/webserver/issues/new. For a bug, please add the label "bug".

When filing an issue, make sure to answer these four questions:

  1. What operating system and processor architecture are you using?
  2. What did you do?
  3. What did you expect to see?
  4. What did you see instead?

Suggest Feature

If you wish a special feature, feel free to add it as an issue, like a bug https://github.com/Birdiary/webserver/issues/new. Here, please add the label "enhancement". Add the moment, we appreciate any suggestions.

Code contributions

Next to reporting bugs or suggesting features, we really appreciate code contributions. We suggest contributing through forking and pull-requests. A guideline how to fork a project and create a pull request can be found here: https://docs.github.com/en/get-started/quickstart/contributing-to-projects

We look at pull requests on a regular basis and give feedback or merge them directly into our main repository.

Validating an issue or pull request

You can also contribute by merging a pull request into your local copy of the project and testing the changes. Add the outcome of your testing in a comment on the pull request.

Further, you can validate an issue or add additional context to an existing issue.

About

License:GNU General Public License v3.0


Languages

Language:JavaScript 67.9%Language:HTML 13.9%Language:CSS 9.4%Language:Python 8.6%Language:Dockerfile 0.2%Language:Shell 0.0%