- Clone the repo with
git clone https://github.com/AUBGTheHUB/Eureka.git
. - Get Django and all dependencies using
pip3 install -r requirements.txt
. It's highly suggested that you do this in a venv. - You can run the test server by using:
$ python manage.py runserver
In case you have both Python 2 and 3, you should use:
$ python3 manage.py runserver
Your Python version should be at least 3.5 for this version of Django.
Fork the repository and then:
$ git clone yourforkedcopy.git
Add upstream using:
$ git remote add upstream https://github.com/AUBGTheHUB/Eureka.git
To pull the most recent changes from the main repo:
$ git pull upstream master
Make your changes, do your commits and push the changes to the forked repo. Do a pull request against Eureka/master to request to merge your changes.