Skip to content

Instantly share code, notes, and snippets.

@olegkovalov
Created September 1, 2019 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olegkovalov/77927d30bdeb12d7e9d5e76b937a29d9 to your computer and use it in GitHub Desktop.
Save olegkovalov/77927d30bdeb12d7e9d5e76b937a29d9 to your computer and use it in GitHub Desktop.
django_blog
├── api
│ ├── django_blog
│ │ ├── apps
│ │ │ ├── account
│ │ │ │ ├── admin.py
│ │ │ │ ├── apps.py
│ │ │ │ ├── forms.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── managers.py
│ │ │ │ ├── migrations
│ │ │ │ │ ├── 0001_initial.py
│ │ │ │ │ └── __init__.py
│ │ │ │ └── models.py
│ │ │ ├── common
│ │ │ │ ├── apps.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── management
│ │ │ │ │ ├── commands
│ │ │ │ │ │ ├── generate_secretkey.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── startapp.py
│ │ │ │ │ └── __init__.py
│ │ │ │ └── models
│ │ │ │ ├── core.py
│ │ │ │ └── __init__.py
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── settings
│ │ │ ├── contrib.py
│ │ │ ├── django_blog.py
│ │ │ ├── django.py
│ │ │ ├── environment.py
│ │ │ └── __init__.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── Makefile
│ ├── manage.py
│ ├── pylama.ini
│ ├── pyproject.toml
│ ├── pytest.ini
│ └── requirements
│ ├── common.in
│ ├── common.txt
│ ├── dev.in
│ └── dev.txt
├── build
│ ├── ci
│ │ └── circle.yml
│ ├── docker-compose-api.yml
│ ├── docker-compose-dev.yml
│ ├── docker-entrypoint-api.sh
│ └── Dockerfile.api
├── circle.yml -> build/ci/circle.yml
└── README.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment