Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 775 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 775 Bytes

Backend

Setup:

Only for Windows:

  1. Install chocolatey from here or run the below command on powershell.
$ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  1. Then Install choco
$ choco install make
$ make
  • for Windows:
  $ Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser
  $ . HFenv\Scripts\activate
  • for linux:
. ./HFenv/bin/activate
  • finally: To start the server
$ python manage.py runserver 0.0.0.0:3000