├── .env ├── .gitignore ├── Dockerfile ├── README.md ├── artisen ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.env: -------------------------------------------------------------------------------- 1 | DEBUG=1 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/README.md -------------------------------------------------------------------------------- /artisen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artisen/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/artisen/asgi.py -------------------------------------------------------------------------------- /artisen/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/artisen/settings.py -------------------------------------------------------------------------------- /artisen/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/artisen/urls.py -------------------------------------------------------------------------------- /artisen/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/artisen/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/artisen/HEAD/requirements.txt --------------------------------------------------------------------------------