A simple "skeleton" of a production-ready Django project. Dependencies updated regulary.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
dependabot[bot] cee50b7402
build(deps): bump django from 4.1.3 to 4.1.4
2 years ago
.github task: creates dependabot 3 years ago
apps task: creates a django project skeleton 3 years ago
docker config(uwsgi): add missing template rendering in entrypoint 3 years ago
skeletondjango task: creates a django project skeleton 3 years ago
.gitignore task: creates a django project skeleton 3 years ago
Dockerfile task: creates a django project skeleton 3 years ago
LICENSE Initial commit 3 years ago
Makefile task: creates a django project skeleton 3 years ago
README.md task: creates a django project skeleton 3 years ago
docker-compose.yml task: creates a django project skeleton 3 years ago
manage.py task: creates a django project skeleton 3 years ago
requirements.txt build(deps): bump django from 4.1.3 to 4.1.4 2 years ago
variables.dev task: creates a django project skeleton 3 years ago

README.md

skeleton-django

Skeleton of a backend Django App.

Organization

apps/
    app_one/
        apputils/
        migrations/
        models/
        serializers/
        tests/
        views/
        urls.py
project_name/
    settings/
        default.py
        development.py
        production.py
        staging.py
utils/
  • Each package is located inside the apps package.
  • Each model, serializer, view is defined in a separate .py file.