/billing_backend

NIT Srinagar Billing System (Backend)

Primary LanguagePython

NIT Srinagar Billing System (Backend)

Setup the app

Clone the repository

HTTPS

git clone https://github.com/JameelKaisar/billing_backend.git

SSH

git clone git@github.com:JameelKaisar/billing_backend.git

Change directory to project folder

cd billing_backend

Create a virtual environment

python3 -m venv venv

Activate the virtual environment

Unix

source venv/bin/activate

Windows

venv\Scripts\activate.bat

Install requirements

pip install -r requirements.txt

Initialize the app

python3 init.py

Deactivate the virtual environment

deactivate

Run the app

Activate the virtual environment

Unix

source venv/bin/activate

Windows

venv\Scripts\activate.bat

Start the application

uvicorn main:app --reload

Deactivate the virtual environment

deactivate