A forum-like backend api designed to have a web app built in front of it.
- docker (installation)
- docker-compose (installation)
Clone this repository using:
git clone https://github.com/simon-martineau/boards.git
Perform these steps to quickly get started
Note: ports 8000 and 5444 need to be available
cd boards
docker-compose -f /home/simon/Dev/boards/docker-compose.dev.yml up -d
And that's all you need! The api should be available at http://localhost:8000
You can always use the following command to stop execution:
docker-compose -f /home/simon/Dev/boards/docker-compose.dev.yml down
Use this command to run tests:
docker-compose -f docker-compose.dev.yml run backend sh -c "python manage.py test"