A file storage for the web
Go to file
2023-10-15 08:56:50 +03:00
cista Cleanup LRUCache, fix bug, add unit tests (pytest). 2023-10-15 08:56:50 +03:00
tests Cleanup LRUCache, fix bug, add unit tests (pytest). 2023-10-15 08:56:50 +03:00
.gitignore Restructuring as a Python package. 2023-10-15 02:42:16 +03:00
README.md Minimal installation instructions. 2023-10-15 07:31:06 +03:00
setup.py Restructuring as a Python package. 2023-10-15 02:42:16 +03:00

Web File Storage

Development install:

python -m venv .venv        # Create virtual env
. .venv/bin/activate
pip install -e .            # Editable install
sanic cista --reload --dev  # Runs on localhost:8000

Environment variable STORAGE=<path> may be used to choose which folder it serves. The default is current directory.

No authentication is supported, so implement access control externally or be careful with your files.