codesmidgen/README.rst

35 lines
999 B
ReStructuredText

===========
CodeSmidgen
===========
CodeSmidgen is a simple "pastebin" written in Python using Quart, SQLAlchemy, Pygments and a few other libraries.
Installation
------------
The easiest way to install CodeSmidgen is via Docker and Docker Compose. Here's an example config:
.. code-block:: yaml
version: '3'
services:
postgres:
image: postgres:15
env:
- POSTGRES_USER=codesmidgen
- POSTGRES_DB=codesmidgen
- POSTGRES_PASSWORD=codesmidgen
restart: unless-stopped
volumes:
- "./data/postgres:/var/lib/postgresql/data"
app:
image: git.snyman.info/raoul/codesmidgen:latest
env:
- SMIDGEN_SECRET_KEY=yoursecrethere
- SQLALCHEMY_DATABASE_URI=postgresql://codesmidgen:codesmidgen@postgres/codesmidgen
restart: unless-stopped
ports:
- "127.0.0.1:8000:8000"
Once you have that up and running, you can set up NGINX or another reverse proxy to port 8000 on 127.0.0.1.