This is FimApp server, a Financial Manager apps. This repo intended as a backend part of the FimApp project. It contains a several apps and APIs endpoints to exhibit a certain functionality. It was built mainly by using Django REST Framework.
1. Make sure you already have Docker and Docker Compose properly installed
2. Clone repos
git clone https://github.com/deanarchy/FimApp-Server.git
3. Run Docker Compose with Development config
docker-compose up -f docker-compose.yml -d --build
4. Migrate the database
docker-compose exec backend python manage.py migrate
5. Create superuser
docker-compose exec backend python manage.py createsuperuser
To be added...
This server mainly built using Django REST Framework
dj-rest-auth used for authentication systems.
django-rest-framework-simplejwt used for JSON Web Token authentication.