Application created during final project study @ Polytech Tours
Web application
####prerequisite
- nodejs
- npm
####install dependency
make init
####run
grunt serve
script for importation of graph into GEOJson format
based on osmosis, osmtogeojson et merge-geojsons
####prerequisite (for now)
- nodejs
- npm
- osmosis
- curl
- make
####install dependency
make init
####run
make
####clean dependency
make cleanAll
####clean Data (temporary and final)
make clean
add CORS (Cross-Origin ressource sharing) habilitation enable-cors
add
Header set Access-Control-Allow-Origin "*"
to virtualHost used to serve data
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/srv/http/depot"
ServerName depot.pfe.local
ErrorLog "/home/kurze/Documents/pfe/log/error_log"
CustomLog "/home/kurze/Documents/pfe/log/common_log" common
Header set Access-Control-Allow-Origin "*"
</VirtualHost>