This is a website for managing gyms, powered by Django
All the files of the project is combined and all the modules are set to one file, so to run the
First of all you need to install pip3
sudo apt-get -y install python3-pip
After that, you need to install django with pip -- each version of django is different. In this project we work with djnago v1.11 . By executing the below code you will install latest verion of django
pip3 install django
We have all the requirements listed in requirments.txt you can use that to install all of them.
pip3 install -r /path/to/requirements.txt
Also the requirements are listed as
Django==1.11
After installing you can run the project by using the following command
python3 manage.py runserver
- Python - Programming language
- Django - Web freamwork
- Html - Hypertext Markup Language
- css - Cascading Style Sheets
- Java script - programming language
- boot strap - Front-end framework
- jquery - JavaScript library
- Ahmadreza Samadi - Developer - Ahmadreza samadi
Thanks for your attention.