Demo: link
A project for builder's dojo. The product is a community that let users ask and share solutions.
Here is the presentation deck that introduces the product in detail.
- Clone this repo
- Create your Python virtual environment and activate it
- use the following command to create and activate virtual environment named
.venv# Linux sudo apt-get install python3-venv # If needed python3 -m venv .venv source .venv/bin/activate # macOS python3 -m venv .venv source .venv/bin/activate # Windows py -3 -m venv .venv .venv\scripts\activate
-
Install the packages in
requirements.txt,pip3 install -r requirements.txt -
python3 manage.py migrateThen you could run server bypython3 manage.py runserver.