28 lines
No EOL
325 B
Bash
28 lines
No EOL
325 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
https://www.phusionpassenger.com/library/deploy/nginx/automating_app_updates/python/
|
|
|
|
### Variables de entorno ###
|
|
DB_PATH=drogon_db
|
|
|
|
|
|
|
|
apt-get update
|
|
|
|
### Set up de PIP ###
|
|
if ! [ -x "$(pip -v git)" ]; then
|
|
sudo apt-get -y install python3-pip
|
|
fi
|
|
|
|
|
|
|
|
### Set up de Docker ###
|
|
|
|
|
|
|
|
### Set up de GIT ### |