This project is backend for the application The Wall
. You can find frontend code here. The Wall is the place where user can post their thoughts and any one can see them.
This project is mainly developed using Python
, django
and DRF
.
Create an environment using virtualenv
.
Clone the repo and execute pip install -r requirements.txt
in the root folder to install all dependencies.
To create database and tables execute python manage.py makemigrations
and python manage.py migrate
.
After installation execute python manage.py runserver
to run app in development mode.
To load the application in the python shell execute python manage.py shell
.
To list all the urls/paths available execute python manage.py show_urls
.
To learn Python, check out the Python documentation.
To learn django, check out the django documentation.
To learn DRF Router, check out the DRF documentation.