Skip to content

AtoBrightSide/sonic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

145 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sonic

Before You Begin

Setting Up virtual environment

python -m venv venv

Activate the virtual environment

source venv/bin/activate

Install requirements

Install libraries using pip install <library> Install Libraries from a file - pip install -r requirements.txt

Save requirements

After you install libraries using pip, save them to the requirements.txt file using pip freeze > requirements.txt

Set Up Django Project

django-admin startproject <project_name> If you want the project to be in the same directory, use django-admin startproject <project_name> .

Start a django app

python manage.py startapp <app_name>

Run

python manage.py runserver

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 95.9%
  • HTML 2.2%
  • CSS 1.9%