A file hosting service.
Go to file
2019-10-01 23:06:51 -04:00
static first commit 2019-10-01 23:06:51 -04:00
templates first commit 2019-10-01 23:06:51 -04:00
.gitignore first commit 2019-10-01 23:06:51 -04:00
buckler_aiohttp.py first commit 2019-10-01 23:06:51 -04:00
config.py.template first commit 2019-10-01 23:06:51 -04:00
LICENSE first commit 2019-10-01 23:06:51 -04:00
README.md first commit 2019-10-01 23:06:51 -04:00
saddle.py first commit 2019-10-01 23:06:51 -04:00
saddle.sql first commit 2019-10-01 23:06:51 -04:00

Saddle

A file hosting service similar to Pomf and Uguu but without the public nature.

Requirements

Python 3.7+
PostgreSQL 11.5+
Python packages: wheel gunicorn aiohttp aiohttp_jinja2 asyncpg uvloop

Install

$ psql
postgres=# CREATE DATABASE "saddle";
postgres=# CREATE USER "saddle" WITH PASSWORD 'password';
postgres=# ALTER ROLE "saddle" SET client_encoding TO 'utf8';
postgres=# ALTER ROLE "saddle" SET default_transaction_isolation TO 'read committed';
postgres=# ALTER ROLE "saddle" SET timezone TO 'UTC';
postgres=# GRANT ALL PRIVILEGES ON DATABASE "saddle" TO "saddle";
postgres=# \q
  1. Get on the floor
  2. Walk the dinosaur

Usage

gunicorn saddle:init_app --bind localhost:5000 --worker-class aiohttp.GunicornWebWorker