Medium clone for article writing and management.
Uses React for frontend and Django Rest Framework for Rest APIs.
- Install Python 3.7.2.
- Clone this repository:
git clone git@github.com:sujithbattu/conduit-django.git
. cd
intoconduit-django
:cd conduit-django
.- Install virtualenv.
- Create a new virtualenv called "ENV":
virtualenv ENV
. - Set the local virtualenv to "ENV":
source ENV/bin/activate
.
If all went well then your command line prompt should now start with (ENV)
.
- Install the required packages:
pip install -r requirements.txt
- project should build and run with:
python manage.py runserver
If your command line prompt does not start with (Env)
at this point, try running source ENV/bin/activate
or cd ../conduit-django
.
If virtualenv is still not working, visit us in the Thinkster Slack channel so we can help you out.