Skip to content

rachanabasnet/Django-Boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Boilerplate

STEPS TO GET STARTED

Create virtual environment

  • 1. Install virtual environment

    pip install virtualenv
    
  • 2. Create virtual environment (create virtual env outside the django project)

    virtualenv <virtual_env_name>
    

Install project requirements

  • Install requirements.txt file packages

    pip install -r requirements.txt
    

Migrate Table

  • Migrate all tables to database using a command below:

    python manage.py migrate
    

Create super user

  • create superuser for the project.

    python manage.py createsuperuser
    

Run server

  • Run the django server.

    python manage.py runserver
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages