- Go to "Pages" in the main left-hand menu.
- Click "Create a project" button.
- Select "Connect to Git" from the dropdown.
- Select your Github or Gitlab repository and click "Begin setup" button.
- On the build and deployment settings page, set the following values:
- Framework preset: None
- Build command:
npm run deck
- Build output directory:
/public
- Click the "Begin deploy" button.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# BASH script to generate Navit-compatible map of Spain from OSM data | |
# https://gist.github.com/pataquets/f8cf96d93d99e0fd7354#file-osm-spain-sh | |
rm -i navitmap.bin navitmap_001.bin spain.osm.bz2 spain.osm.pbf | |
#wget -c http://download.geofabrik.de/osm/europe/spain.osm.bz2 && bzcat spain.osm.bz2 | maptool navitmap.bin | |
#wget http://download.geofabrik.de/osm/europe/spain.osm.bz2 -O - | bunzip2 | maptool navitmap_001.bin | |
wget http://download.geofabrik.de/osm/europe/spain.osm.pbf -O - | maptool -P navitmap_001.bin | |
#wget http://download.geofabrik.de/osm/europe/spain.osm.pbf -O -\ |