Skip to content

real-shut-down-exe/Django-Directory-Structure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

api

  • pycache/: Directory where Python stores compiled bytecode.
  • __init__.py: Marks the directory as a Python package.
  • asgi.py: Entry-point for ASGI-compatible web servers.
  • settings.py: Contains configuration for the Django project.
  • urls.py: Defines URL declarations for the project.
  • wsgi.py: Entry-point for WSGI-compatible web servers.

apps/common/

  • BaseModel.py: Python module defining a base model.

docs/

  • doc.txt: General documentation file.
  • docBaseModel.txt: Documentation for the BaseModel.

env/

  • Directory for the virtual environment.

logs/

  • Directory for log files.

requirements/

  • requirements.txt: Lists Python dependencies.

scripts/

  • Contains custom scripts.

static/

  • Directory for static files.

tests/

  • Contains test modules.

utils/

  • __init__.py: Allows the utils directory to be a Python package.
  • helpers.py: Contains helper functions.

other/

  • .gitignore: Specifies files to be ignored by Git.
  • db.sqlite3: The SQLite database file.
  • manage.py: Command-line utility for Django.
  • README.md: Provides an introduction and documentation.

Warning

You need to create db.sqlite3 and env

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages