Clone the project
git clone https://github.com/davisonv/base-erp-backend
Go to the project directory
cd my-project
Create a venv
python -m venv venv
Activate the venv
source ./venv/bin/activate
Install dependencies
pip install -r requirements.txt
Make the migrations then migrate
python manage.py makemigrations
python manage.py migrate
Run the development server
python manage.py runserver