Skip to content

Just a simple file hosting application inspired by the likes of pomf.se and teknik.io.

License

Notifications You must be signed in to change notification settings

TheReverend403/pste

Folders and files

NameName
Last commit message
Last commit date

Latest commit

34ad40b · Feb 26, 2024
Feb 26, 2024
Feb 26, 2024
Feb 26, 2024
Feb 23, 2024
Jan 20, 2022
Feb 26, 2024
Feb 26, 2024
Apr 9, 2019
Feb 23, 2024
Feb 26, 2024
Feb 23, 2024
Feb 26, 2024
Feb 26, 2024
Feb 23, 2024

Repository files navigation

pste

GitHub GitHub Workflow Status Code style: ruff

Just a simple file hosting application inspired by the likes of pomf.se and teknik.io.

Very early alpha, 100% definitely not ready whatsoever for production use. Not even for a laugh.

Demo (latest dev)

Quick Installation (dev)

First, install Poetry.

git clone https://github.com/TheReverend403/pste
cd pste
poetry install
yarn install # or `npm install` if you're a caveman.
cp pste/resources/config/settings.yml config/settings.yml # Edit settings.yml
poetry shell

echo FLASK_APP=pste\nFLASK_ENV=development > .flaskenv

flask assets build
flask db upgrade
flask user create # Or use /auth/register

# Do not use this in production, use a WSGI server such as gunicorn with pste:create_app() as your entrypoint.
flask run