Meedeeuhm is a website where people can post their articles/blogs and connect with the relevant audience.
This website is made to learn Django by making modifications while referencing to a Youtube Video.
-
Programming language
- Python
-
Framework
- Django
-
Database
- Sqlite
- Clone this repository.
- Open the cloned repository.
- Install dependencies using
pip install -r requirements.txt
OR Installpipenv
usingpip install pipenv
and initialise a Virtual Machine usingpipenv install
in the directory. - Make migrations using
python manage.py makemigrations
andpython manage.py migrate
. - Run the Django Server using
python manage.py runserver
and then gotolocalhost:8000
or127.0.0.1:8000
and see the server running.