REST API server hosting Bahoo
service.
The Project is written in Python
and is based on Django
and Django Rest Framework
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
The project is Dockerized
- Python 3.9+
- Django
- Django Rest Framework
- Docker
After cloning the project we setup a virtual environment and install dependencies
$ python3 -m venv .venv
$ source .venv/bin/activate
$ python install -r requirements/dev.txt
$ touch .env # add required environment variables here
$ docker run -p 5432:5432 --env-file .env --name postgre -h db -d postgres:14.2-alpine
$ docker/docker-entrypoint.sh --migrate python manage.py runserver
$ docker compose -f docker/docker-compose.yml -p bahoo up -d
Bahoo
├── docker
│ ├── docker-compose.yml
│ ├── docker-entrypoint.sh
│ └── Dockerfile
├── api
│ ├── authentication
│ ├── invoice
│ └── users
├── core
│ ├── asgi.py
│ ├── exception_handler.py
│ ├── models.py
│ ├── renderer.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── requirements
│ ├── common.txt
│ ├── dev.txt
│ └── prod.txt
├── manage.py
└── README.md
The docker/
directory is where are the configuration files needed to run the application with docker.
The core/
contains The configuration root of the project, where project-wide settings, urls.py
, renderer.py
, exception_handler.py
, models.py
and wsgi.py
modules are placed.
The api/
contains Django applications which are authentication
, invoice
and users
Api | Purpose |
---|---|
authentication |
Used for user registration, authentication and refreshing JWT tokens |
invoice |
Manages user invoices, each invoices holds multiple transactions and reminders |
users |
Customizes User model |
- Django - The web framework
- Django Rest Framework - The REST frame work
- PostgresSQL - Database
- Adminer - Database Manager
- Mohamad Amin Jafari - Initial work - Shorakie
This project is licensed under the TBD
License - see the LICENSE.md file for details.