https://github.com/fffunction/docker-wagtail-develop
https://github.com/fffunction/docker-wagtail-develop
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fffunction/docker-wagtail-develop
- Owner: fffunction
- Created: 2015-11-27T16:18:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-27T17:15:56.000Z (over 10 years ago)
- Last Synced: 2025-01-12T13:29:04.013Z (over 1 year ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Usage:
```sh
docker-compose build
docker-compose up
docker-compose run web python manage.py migrate --noinput
```
The database currently isn't configured correctly so you'll need to set it up like:
```
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'postgres',
'PASSWORD': 'postgres',
'HOST': 'postgres',
'PORT': '5432',
}
}
```