This repository contains the source code required to run the OpenBikeSensor data collection portal. It is separated into components:
- api: The backend service, written in JavaScript for Node.js, using express.js, and a MongoDB for metadata storage.
- frontend: A React single-page application that allows access to the data, provides summaries and visualizations, and lets users adjust settings and manage and publish their tracks.
First of all, you must clone this project. This project uses submodules, thus ensure, that they are cloned as well:
git clone --recursive https://github.com/openbikesensor/portal
# ... or if you forgot the --recursive argument, you can run this in the
# repository's directory later:
git submodule update --init --recursive
Note: There is now a guide for a dockerized deployment in the deployment folder.
You should be familiar with managing a Linux server. If not, find a suitable guide first. This will only give a rough outline of the steps to take, you must make sure to properly set up and secure your server yourself.
- Create a user for running the application. It is not recommended to run as a user that is also used for other things. Do not run as root!
- Clone the repository.
- Install
node
of at least version 15, and alsonpm
. You can use the Node Version Manager (nvm), since this project contains a.nvmrc
. Just runnvm install
followed bynvm use
. - Run
npm ci
in theapi
andfrontend
directories to install dependencies. - Install and configure a MongoDB somewhere.
- Copy
api/config.json.example
toapi/config.json
and change it to suit your setup. Make sure to only use https URLs. Generate secure secrets. Customize client IDs. - Copy
frontend/src/config.json.example
tofrontend/src/config.json
and adjust. - Run
npm run build
in the frontend directory. This needs to be done after changing the config, so if you did something wrong, re-run the build. If you run your frontend on a non-root URL, run the build with thePUBLIC_URL=/prefix
environment variable. - Create a systemd-user service, or use tmux, or do whatever you like to start
the API service (
npm start
inapi/
directory). It should run as the dedicated user, and expose127.0.0.1:3000
. UsePORT
environment variable if you want to change the port. Make sure the service starts with environmentNODE_ENV=production
, too. - Configure nginx or your reverse-proxy of choice to forward API requests to
the API port, and serve static files from the
frontend/build/
folder.
We've moved the whole development setup into Docker to make it easy for everyone to get involved. After sucessfully installing Docker Engine as well as Docker Compose onto your machine, and cloning the repository, all you need to do is:
docker-compose up -d --build
If this does not work, please open an issue and describe the problem you're having, as it is important to us that onboarding is super easy :)
Your frontend should be running at http://localhost:3001 and the API at http://localhost:3000 -- but you probably only need to access the frontend for testing. The frontend dev server also proxies all unknown requests to the API, so the frontend always just requests data at its own URL.
If you don't like docker, or want to run this in production without it, you can
do so as well. Our Docker setup is simply a slight wrapper around very simple
JavaScript packages that you can install yourself as usual, with npm install
.
The API can be started with npm start
inside its folder. The frontend
development server uses npm start
as well, while building a production
version of the frontend happens with npm run build
.
To connect the parts together, please have a look at what we're doing in the
"official" setup of docker, i.e. in docker-compose.yaml
, the Dockerfile
s
and in the respective package.json
of the service. If you've done this kind
of thing before, it's not that hard. Otherwise, ask on Slack and there will be
somebody to help you ;)
You are advised not to use the dockerized mongodb service and instead do a proper MongoDB setup on a server that is backed up and secured.
You can run the API in docker, but it is prefered to run it as a restricted user in its own directory somewhere where it cannot escape ;)
The frontend should be built using npm run build
and then served from a
proper web server, such as nginx or apache. See the instructions at
create-react-app concerning deployment of an app.
You are advised to virtualize your server for security reason, and separate this whole application from other parts of your server system.
Also please install a reverse proxy that terminates TLS for you and handles certificates. We do not support TLS directly in the application, instead, please use this prefered method. This reverse proxy can also handle static file serving for the frontend, no need for two separate server processes.
Sometimes your database will have to be migrated. The docker setup should do this automatically, but if it does not work, you can run the following commands:
# if running locally
(cd api/; npm run migrate:up)
# if running in docker
docker-compose run --rm api npm run migrate:up
If you have your own MongoDB instance running somewhere, you can set the
environment variable MONGODB_URL
when starting the server, and it will read
that URL for connecting.
export MONGODB_URL=mongodb://user:[email protected]/obs-app-database
This does not work when using docker-compose, in that case, you will have to
modify the docker-compose.yaml
to include that URL.
By default in development mode mails are not sent, but instead the mail data is
logged to the console. This can be overriden with the --devSendMails
flag if
you start the application like so: npm run dev -- --devSendMails
.
Mails are also always sent in production mode!
For actually sending e-mails the mailserver, sender, user and password for the SMTP server need to be specified as environment variables:
MAILUSER
-- the smtp mailbox login nameMAILPW
-- password for the mailboxMAILSERVER
-- the hostname of the SMTP server, e.g.mail.example.com
MAILSENDER
-- sender name, e.g.[email protected]
Full command example:
MAILSERVER=mail.example.com [email protected] \
MAILUSER=my_mail_login MAILPW=hunter2 \
npm run dev -- --devSendMails
All of this of course is not too important if you're developing locally. To get to the logged email content that would have been sent, check your docker log:
docker-compose logs -f api