summaryrefslogtreecommitdiff
path: root/doc/examples/test-and-deploy-python-application-to-heroku.md
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-06-25 16:04:54 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-07-06 16:43:15 +0200
commita6ef87338365560bef7fedf1119c9f65bb8c621c (patch)
tree5f70458e3f090df8948f1e97ca3dd2c7e0c43620 /doc/examples/test-and-deploy-python-application-to-heroku.md
parentff0b88b1a81a06b53a7d2e1a4e0dccabcb486ef7 (diff)
downloadgitlab-ci-a6ef87338365560bef7fedf1119c9f65bb8c621c.tar.gz
Added documentation about the use of Dpl
Diffstat (limited to 'doc/examples/test-and-deploy-python-application-to-heroku.md')
-rw-r--r--doc/examples/test-and-deploy-python-application-to-heroku.md68
1 files changed, 68 insertions, 0 deletions
diff --git a/doc/examples/test-and-deploy-python-application-to-heroku.md b/doc/examples/test-and-deploy-python-application-to-heroku.md
new file mode 100644
index 0000000..0a9b9d7
--- /dev/null
+++ b/doc/examples/test-and-deploy-python-application-to-heroku.md
@@ -0,0 +1,68 @@
+### Test and Deploy Python application to Heroku
+Example Python application with tests on PostgreSQL database, staging and production deployment to Heroku can be found here:
+[source](https://gitlab.com/ayufan/python-getting-started) and here: [ci](https://ci.gitlab.com/projects/4080)
+
+### Configure project
+This is how the configuration (the `.gitlab-ci.yml`) for that project looks like:
+```yaml
+test:
+ script:
+ # this configures django application to use attached postgres database that is run on `postgres` host
+ - export DATABASE_URL=postgres://postgres:@postgres:5432/python-test-app
+ - apt-get update -qy
+ - apt-get install -y python-dev python-pip
+ - pip install -r requirements.txt
+ - python manage.py test
+
+staging:
+ type: deploy
+ script:
+ - apt-get update -qy
+ - apt-get install -y ruby-dev
+ - gem install dpl
+ - dpl --provider=heroku --app=gitlab-ci-python-test-staging --api-key=$HEROKU_STAGING_API_KEY
+ only:
+ - master
+
+production:
+ type: deploy
+ script:
+ - apt-get update -qy
+ - apt-get install -y ruby-dev
+ - gem install dpl
+ - dpl --provider=heroku --app=gitlab-ci-python-test-prod --api-key=$HEROKU_PRODUCTION_API_KEY
+ only:
+ - tags
+```
+
+This project have three jobs:
+1. `test` - used to test rails application,
+2. `staging` - used to automatically deploy staging environment every push to `master` branch
+3. `production` - used to automatically deploy production environmnet for every created tag
+
+### Store API keys
+The project requires to create two secure variables in `Project > Variables`:
+1. `HEROKU_STAGING_API_KEY` - Heroku API key used to deploy staging app,
+2. `HEROKU_PRODUCTION_API_KEY` - Heroku API key used to deploy production app.
+
+Heroku API key can be found in [Manage Account](https://dashboard.heroku.com/account).
+
+### Create Heroku application
+You have to navigate to Heroku [Dashboard](https://dashboard.heroku.com/) and create new application to each of your environments.
+
+### Create runner
+To build this project you also need to have `Runner`. You can use public runners available on `ci.gitlab.com`, but you can also provide your own:
+```
+gitlab-ci-multi-runner register \
+ --non-interactive \
+ --url "https://ci.gitlab.com/" \
+ --registration-token "PROJECT_REGISTRATION_TOKEN" \
+ --description "python-3.2" \
+ --executor "docker" \
+ --docker-image python:3.2 \
+ --docker-postgres latest
+```
+
+Above command creates runner that uses `docker` (you need to have Docker installed), uses [python:3.2](https://registry.hub.docker.com/u/library/python/) image and uses [postgres](https://registry.hub.docker.com/u/library/postgres/) database.
+
+To access PostgreSQL database you need to connect to `host: postgres` instead of default: `localhost` as `postgres` user without password.