Skip to content

Instantly share code, notes, and snippets.

@pimiento
Created December 19, 2022 18:29
Show Gist options
  • Save pimiento/a550f50ff4fdb3852ff50dc7b3580748 to your computer and use it in GitHub Desktop.
Save pimiento/a550f50ff4fdb3852ff50dc7b3580748 to your computer and use it in GitHub Desktop.
.
├── api_yamdb
│   ├── api
│   │   ├── apps.py
│   │   ├── filters.py
│   │   ├── __init__.py
│   │   ├── permissions.py
│   │   ├── serializers.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── api_yamdb
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   └── settings.cpython-38.pyc
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── Dockerfile
│   ├── manage.py
│   ├── requirements.txt
│   ├── reviews
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── __init__.py
│   │   ├── management
│   │   │   └── commands
│   │   │   └── import_csv.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   └── __init__.py
│   │   └── models.py
│   └── templates
│   └── redoc.html
├── infra
│   ├── docker-compose.yaml
│   ├── fixtures.json
│   └── nginx
│   └── default.conf
├── pytest.ini
├── README.md
├── setup.cfg
└── tests
├── conftest.py
├── __init__.py
├── test_docker_compose.py
├── test_dockerfile.py
├── test_readme.py
├── test_requirements.py
└── test_settings.py
12 directories, 37 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment