diff --git a/.gitignore b/.gitignore index eb917c637..5cc519787 100644 --- a/.gitignore +++ b/.gitignore @@ -19,5 +19,6 @@ /spec/examples.txt /config/database.yml /config/secrets.yml +/config/deploy-secrets.yml /coverage diff --git a/config/deploy-secrets.yml.example b/config/deploy-secrets.yml.example new file mode 100644 index 000000000..b69fea225 --- /dev/null +++ b/config/deploy-secrets.yml.example @@ -0,0 +1,18 @@ +staging: + deploy_to: "/var/www/participacion" + ssh_port: 21 + server: staging.participacion.madrid.es + user: xxxxx + +preproduction: + deploy_to: "/var/www/participacion" + ssh_port: 2222 + server: xxx.xxx.xxx.xxx + user: xxxxx + +production: + deploy_to: "/var/www/participacion" + ssh_port: 2222 + server: xxx.xxx.xxx.xxx + user: xxxxx +