2020-01-02 08:31:27 -05:00
2023-04-15 18:52:45 -04:00
2019-10-01 23:06:51 -04:00
2020-11-12 13:17:38 -05:00
2020-11-12 13:17:38 -05:00
2019-10-01 23:06:51 -04:00
2019-10-06 17:01:46 -04:00
2023-04-15 18:52:45 -04:00
2019-10-02 19:47:27 -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 requests

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

Description
A file hosting service.
Readme 554 KiB
Languages
Python 66%
HTML 22%
CSS 7.9%
JavaScript 4.1%