This repository is a boilerplate Django project for quickly getting started.
Steps:
- Clone/pull/download this repository
- Create a virtualenv with
virtualenv env
and install dependencies - Configure your .env files.
- Activate the virtual env using
Scripts/activate
- You've setup the virtual env and you're good to run the project.
pip install django
pip install django-tinymce4-liteYou can access the django admin page at http://127.0.0.1:8000/admin and login with username 'desaidhruv' and the password as 12345. Also a new admin user can be created using
python manage.py createsuperuserGo to mysite folder and run
python manage.py runserverThen go to the browser and enter the url http://127.0.0.1:8000/
python manage.py createsuperuser
Go to mysite folder and run
python manage.py runserver
Then go to the browser and enter the url http://127.0.0.1:8000/
This project includes:
- Register, Login and Logout forms are developed.
- A model is created to display content on the Front-end.
- Data of that model is displayed on the home page.