Loading repository data…
Loading repository data…
mendrika261 / repository
Ce projet vise à mettre en œuvre quelques notions de base de la comptabilité sous la forme d'une application web.
Ce projet vise à mettre en œuvre quelques notions de base de la comptabilité sous la forme d'une application web.
Disclaimer: This project is solely intended for educational purposes and should not be considered as a fully-functional accounting application. It is a student project created to implement basic accounting concepts.
git clone https://github.com/mendrika261/S4-SI-entreprise.git
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Create a file named .env and add the following variables:
# Database configuration
ERP_DB_NAME=postgres
ERP_DB_USER=postgres
ERP_DB_PASSWORD=
ERP_DB_HOST=localhost
ERP_DB_PORT=5432
python manage.py makemigrations
python manage.py migrate
Insert data into the database with sql script in sql/ folder
python manage.py createsuperuser
python manage.py runserver