- First of all you need to have python and git installed: https://www.python.org/ https://git-scm.com/
- Navigate to the folder you want the project to be installed in and open up the console
- Clone the project from github: git clone https://github.com/Loevik737/CheckPoint.git
- Set up a virtual environment: pip install virtualenv
- Create the environment: virtualenv venv
- Activate the environment: . venv/bin/activate Or on windows: cd venv/Scripts and run(write) activate
- Navigate into the folder of the project you cloned earlier: cd CheckPoint/
- Install the project's requirements: pip install -r requirements.txt
- Create the database tables: python manage.py migrate
- Run the server: python manage.py runserver
- The site is now running on a local server and you can access it from: http://127.0.0.1:8000/ To run tests to see the site's test coverage run: python manage.py test --with-coverage