Skip to the content.

WebDart

Project for DevJam 2022

PPT added.

Setup Project locally

  1. Install Python.
  2. Run the following commands in Terminal/CMD:
     git clone https://github.com/MauryaRitesh/webdart.git
     cd webdart
    
  3. Create and activate a virtual environment. (can skip this step if you want to install the required dependencies globally).

    Ubuntu

     virtualenv myenv
     source myenv/bin/activate
    

    ### Windows

     python -m venv myenv
     myenv\Scripts\activate.bat  #CMD
     myenv\Scripts\Activate.ps1  #PowerShell
    
  4. Using pip, install the required dependencies:
     pip install -r requirements.txt
    
  5. Finally, start the django server:
     python manage.py runserver
    

    Now, go to http://127.0.0.1:8000/ in the browser!