├── .env.example ├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── fastdash ├── __init__.py ├── api │ ├── __init__.py │ ├── dependencies │ │ ├── __init__.py │ │ └── fastdash.py │ ├── errors │ │ ├── __init__.py │ │ └── http_error.py │ └── routes │ │ ├── __init__.py │ │ ├── api.py │ │ └── fastdash.py ├── core │ ├── __init__.py │ ├── config.py │ ├── events.py │ └── logging.py └── main.py ├── setup.cfg └── setup.py /.env.example: -------------------------------------------------------------------------------- 1 | SECRET_KEY=secret 2 | DEBUG=True -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/README.md -------------------------------------------------------------------------------- /fastdash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/__init__.py -------------------------------------------------------------------------------- /fastdash/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastdash/api/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastdash/api/dependencies/fastdash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/api/dependencies/fastdash.py -------------------------------------------------------------------------------- /fastdash/api/errors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastdash/api/errors/http_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/api/errors/http_error.py -------------------------------------------------------------------------------- /fastdash/api/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastdash/api/routes/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/api/routes/api.py -------------------------------------------------------------------------------- /fastdash/api/routes/fastdash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/api/routes/fastdash.py -------------------------------------------------------------------------------- /fastdash/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastdash/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/core/config.py -------------------------------------------------------------------------------- /fastdash/core/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/core/events.py -------------------------------------------------------------------------------- /fastdash/core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/core/logging.py -------------------------------------------------------------------------------- /fastdash/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/fastdash/main.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiace-archive/fastdash/HEAD/setup.py --------------------------------------------------------------------------------