A managerial networking product for clubs operating in an educational institute
- Clone the repo using
git clone https://github.com/mani-shailesh/focus.git
cd focus
pip install -r requirements.txt
to install required python packages for the focus project. Before this, you may need to installpip
andMySQL Server
if you do not already have them.- Make a copy of
credentials.py
in the same folder as credentials.py.template and fill in the credentials.
NOTE : Do not pushcredentials.py
in the repo. It should be restricted for your personal use only. - Make a database with the name
focus_db
in MySQL. - Execute following commands in the given order:
python manage.py migrate
to create required tables in your databse.python manage.py createsuperuser
to create a superuser for the application.python manage.py runserver
to run the local development server.
- Visit
http://localhost:8000/api/swagger/
to check if it's working!