This site is designed to measure your Body Mass Index
Bilingual this project System Project with Python & Django Framework & REST API
- Back-End: Python, Django, REST API
- Data Base: sqlite3
- Front-End: HTML5, CSS3, JavaScript, Bootstrap5, jQuery, AJAX
- Clone the Project
git clone https://github.com/Morteza078/bmi.git
2.Cd to bmi folder and Create a Virtual Environmentcd bmi
py -3 -m venv venv
- Activate the Interpreter of the Virtual Environment
- Windows:
venv\Scripts\activate
- windows in git bash:
source venv/Scripts/activate
- Linux:
source venv/bin/active
- Install the Requirements
pip install -r requirements.txt
- Write the Following Commands to Create Your Tables
python manage.py makemigrations
python manage.py migrate
- Write the Following Command to Create a Superuser
python manage.py createsuperuser
- Write the Following Command to Run the Server
python manage.py runserver