gitlab-org--gitlab-foss/doc/ci/examples/test-and-deploy-python-appl...

73 lines
2.8 KiB
Markdown
Raw Normal View History

2015-08-26 01:42:46 +00:00
## Test and Deploy a python application
This example will guide you how to run tests in your Python application and deploy it automatically as Heroku application.
You can checkout the example [source](https://gitlab.com/ayufan/python-getting-started) and check [CI status](https://gitlab.com/ayufan/python-getting-started/builds?scope=all).
2015-08-26 01:42:46 +00:00
### Configure project
This is what the `.gitlab-ci.yml` file looks like for this project:
```yaml
test:
script:
2016-05-07 04:09:27 +00:00
# this configures Django application to use attached postgres database that is run on `postgres` host
2015-08-26 01:42:46 +00:00
- 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 has three jobs:
2016-05-07 04:09:27 +00:00
1. `test` - used to test Django application,
2015-08-26 01:42:46 +00:00
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
You'll need to create two 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.
Find your Heroku API key in [Manage Account](https://dashboard.heroku.com/account).
### Create Heroku application
For each of your environments, you'll need to create a new Heroku application.
You can do this through the [Dashboard](https://dashboard.heroku.com/).
### Create runner
First install [Docker Engine](https://docs.docker.com/installation/).
To build this project you also need to have [GitLab Runner](https://about.gitlab.com/gitlab-ci/#gitlab-runner).
2015-09-15 22:28:59 +00:00
You can use public runners available on `gitlab.com/ci`, but you can register your own:
2015-08-26 01:42:46 +00:00
```
gitlab-ci-multi-runner register \
--non-interactive \
2015-09-15 22:28:59 +00:00
--url "https://gitlab.com/ci/" \
2015-08-26 01:42:46 +00:00
--registration-token "PROJECT_REGISTRATION_TOKEN" \
2016-05-07 04:09:27 +00:00
--description "python-3.5" \
2015-08-26 01:42:46 +00:00
--executor "docker" \
2016-05-07 04:09:27 +00:00
--docker-image python:3.5 \
2015-08-26 01:42:46 +00:00
--docker-postgres latest
```
2016-05-07 04:09:27 +00:00
With the command above, you create a runner that uses [python:3.5](https://hub.docker.com/r/_/python/) image and uses [postgres](https://hub.docker.com/r/_/postgres/) database.
2015-08-26 01:42:46 +00:00
To access PostgreSQL database you need to connect to `host: postgres` as user `postgres` without password.