An open API service indexing awesome lists of open source software.

https://github.com/fffunction/docker-wagtail-develop


https://github.com/fffunction/docker-wagtail-develop

Last synced: about 1 year ago
JSON representation

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',
}
}
```