Hack On is a prefest hacking and penetration testing event for Elements Culmyca' 19, the annual cultural and technical fest of YMCA University of Science and Technology, Faridabad.
Use the package manager pip to install requirments.
pip install -r requirements.txtYou need to set the database variable in hackon/settings.py, preferably you can use elephantsql for online datbase or you can use sqlite as default. Then set the Google_auth key and secret in the same file.
Now, you are just three steps away from running it on localhost.
To detect changes in models.py file,
python manage.py makemigrationsTo reflect changes in database,
python manage.py migrateTo run the server on the localhost:
python manage.py runserver(OPTIONAL) To create admin user from terminal:
python manage.py createsuperuser