Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 950 Bytes

README.md

File metadata and controls

15 lines (14 loc) · 950 Bytes

CheckPoint

Installation

  1. First of all you need to have python and git installed: https://www.python.org/ https://git-scm.com/
  2. Navigate to the folder you want the project to be installed in and open up the console
  3. Clone the project from github: git clone https://github.com/Loevik737/CheckPoint.git
  4. Set up a virtual environment: pip install virtualenv
  5. Create the environment: virtualenv venv
  6. Activate the environment: . venv/bin/activate Or on windows: cd venv/Scripts and run(write) activate
  7. Navigate into the folder of the project you cloned earlier: cd CheckPoint/
  8. Install the project's requirements: pip install -r requirements.txt
  9. Create the database tables: python manage.py migrate
  10. 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