Discode is an online educational platform to discuss and solve queries regarding any programming issues
> Now engage in discussion, contribute for the community or create your own group/thread for an entire new discussion on any topic.
> The project helps users ( users could include students/employees or any person from any tech field) to clear out any issues or enhancing
> Django handles all the backend portion of the project which includes the User-model which saves all info about users which signup on the
--> Clone the repository using the command below :
git clone https://github.com/anshvert/Discode.git
--> Move into the directory where we have the project files :
cd Discode
--> Create a virtual environment :
# Let's install virtualenv first
pip install virtualenv
# Then we create our virtual environment
virtualenv envname
--> Activate the virtual environment :
envname\scripts\activate
--> Install the requirements :
pip install -r requirements.txt
--> To run the App, we use :
python manage.py runserver
⚠ Then, the development server will be started at http://127.0.0.1:8000/