You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
532 B
24 lines
532 B
pipeline:
|
|
copy:
|
|
image: appleboy/drone-scp
|
|
host: sgeboers.nl
|
|
target: /home/webapps/gtfs/code
|
|
source: .
|
|
user: webapps
|
|
strip_components: 1
|
|
overwrite: true
|
|
password:
|
|
from_secret: password
|
|
deploy:
|
|
image: appleboy/drone-ssh
|
|
host: sgeboers.nl
|
|
user: webapps
|
|
password:
|
|
from_secret: password
|
|
script:
|
|
- cd /home/webapps/gtfs
|
|
- python3 -m venv env
|
|
- source env/bin/activate
|
|
- cd code
|
|
- pip install -r requirements.txt
|
|
- bokeh serve main.py
|
|
|