Requirements:
Docker
Twitter API 2.0 Bearer Token
To use:
- Clone the repository
- Edit
backend\web-back\.env
file to add the Twitter API bearer token and Django secret key. - Build the containers by running
docker-compose build
- Migrate the database by running
docker-compose run --rm web-back sh -c "python manage.py migrate"
- Create a django superuser by running
docker-compose run --rm web-back sh -c "python manage.py createsuperuser"
- Start the app by running
docker-compose up
The app should now be running on port 80.