/Django-Boilerplate

🐍A boilerplate Django project for quickly getting started

Primary LanguagePython

Django Boilerplate

This repository is a boilerplate Django project for quickly getting started.

django

Getting Started

Steps:

  1. Clone/pull/download this repository
  2. Create a virtualenv with virtualenv env and install dependencies
  3. Configure your .env files.
  4. Activate the virtual env using Scripts/activate
  5. You've setup the virtual env and you're good to run the project.

Installation

pip install django
pip install django-tinymce4-lite

Login

You 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 createsuperuser

Usage

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/
python manage.py createsuperuser

Usage

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:

  1. Register, Login and Logout forms are developed.
  2. A model is created to display content on the Front-end.
  3. Data of that model is displayed on the home page.