Update README.md

This commit is contained in:
muerwre 2018-11-30 15:28:42 +07:00 committed by GitHub
parent 723ab51eef
commit f98aa99330
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,15 +2,14 @@
Bicycle routes app with automatic routes, map screenshots, stickers and other features. Bicycle routes app with automatic routes, map screenshots, stickers and other features.
## Prerequisites ## Prerequisites
npm, php, imagemagick, osrm-server node, osrm-server
### Installing frontend ### Installing
First, download and install the project First, download and install the project
``` ```
git clone https://github.com/muerwre/orchidMap.git git clone https://github.com/muerwre/orchidMap.git
cd orchidMap cd orchidMap
npm i npm i
npm start
``` ```
### Setting up OSRM ### Setting up OSRM
@ -20,9 +19,22 @@ Specify country and region in osrm/prepare_maps.sh or download .pbf file from ht
After starting ./prepare_maps you'll get parsed .osrm files for Open Source Routing Machine server. After starting ./prepare_maps you'll get parsed .osrm files for Open Source Routing Machine server.
Next you need to edit start_server.sh to specify address, port for server and path to parsed files. Next you need to edit start_server.sh to specify address, port for server and path to parsed files.
After that run start_server.sh in screen or by the way you feel comfortable. After that run start_server.sh in screen or by the way you feel comfortable.
### Configuring backend Next edit ```./src/config.js``` and specify OSRM url there. By default, OSRM starts at ```http://localhost:5000/```
Comming soon... ### Frontend
Configs are placed in ```./src/config.js``` and ```./src/constants/```
For development launch ```npm start``` and visit ```http://localhost:8000/```
For production launch ```npm build```, the output will be placed at ```./dist``` folder, you should configure your http server to serve index html from that folder.
### Backend
Take a look at ```./backend/config/``` files, especially at ```db.js```. Your api server will be spawned at ```http://localhost:3000/```
For development launch ```npm serve-dev```, it will launch dev server, reloading on every code update
For production launch ```npm serve``` and make it running in background by any desireable way, such as ```forever```