2019-03-05 02:01:47 +01:00
deployments :
default :
2019-07-19 19:50:25 +02:00
dockerimage : python:3.7.4-stretch
2019-03-05 02:01:47 +01:00
build_steps :
2019-03-20 18:26:01 +01:00
- apt-get update && apt-get install -y libssl-dev libpq-dev git build-essential libfontconfig1 libfontconfig1-dev curl
2020-04-28 22:23:15 +02:00
- RUN bash -c "curl -sL https://deb.nodesource.com/setup_10.x | bash -"
2019-03-20 18:26:01 +01:00
- apt install -y nodejs
2019-03-21 23:24:04 +01:00
- pip install setuptools pip --upgrade --force-reinstall
2019-03-20 18:26:01 +01:00
- cd /code
2019-03-21 23:24:04 +01:00
post_build_steps :
2019-03-21 23:37:36 +01:00
- npm install --no-save
2019-03-20 18:26:01 +01:00
- npm run dist
- pip install /code
2019-03-05 02:01:47 +01:00
- mkdir /myproject
- cd /myproject
- wagtail start mysite
- cd /myproject/mysite
- python manage.py migrate
2020-01-24 16:23:58 +01:00
- echo "<br><h1>Wagtail test instance</h1><p>Log into <a href='/admin/'>/admin/</a> with 'admin' / 'changeme'.</p>" > home/templates/home/welcome_page.html
2019-05-17 15:37:33 +02:00
- echo "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('admin', 'admin@example.com', 'changeme')" | python manage.py shell
2019-03-05 02:01:47 +01:00
launch_steps :
2019-03-21 23:24:04 +01:00
- cd /myproject/mysite
- python manage.py runserver 0.0.0.0:80
run_options : -v ~/code:/code