CodeSmidgen is a simple paste bin written in Python.
https://smidgen.snyman.info
|
||
---|---|---|
codesmidgen | ||
tests | ||
.flake8 | ||
.gitignore | ||
.woodpecker.yaml | ||
codesmidgen.example.cfg | ||
Dockerfile.nightly | ||
Dockerfile.release | ||
pyproject.toml | ||
README.rst |
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:
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.