forum engine in rust
Go to file
2026-04-07 22:05:46 -04:00
migrations sqlx, db setup, users migration 2026-04-07 21:41:39 -04:00
src sqlx, db setup, users migration 2026-04-07 21:41:39 -04:00
static/css templates and styles, copying from main site 2026-04-07 21:03:38 -04:00
templates templates and styles, copying from main site 2026-04-07 21:03:38 -04:00
.env sqlx, db setup, users migration 2026-04-07 21:41:39 -04:00
.gitignore sqlx, db setup, users migration 2026-04-07 21:41:39 -04:00
Cargo.lock sqlx, db setup, users migration 2026-04-07 21:41:39 -04:00
Cargo.toml sqlx, db setup, users migration 2026-04-07 21:41:39 -04:00
README.md added readme 2026-04-07 22:05:46 -04:00

sarmentine

my current project. it's a web forum thing built with rust.

right now it's just the skeleton, but the database is hooked up

setup

  • db is defined in .env like so: DATABASE_URL=sqlite:./YOUR_NAME_HERE.db.
  • it's set to run on 127.0.0.1:3000.

what's inside

  • axum + tokio: for the server.
  • sqlx + sqlite: migrations are automated, and i've got WAL mode and foreign keys turned on.
  • askama: handling the html templates.
  • styling: vtg fonts and a tiled background.

status

  • basic routing / main page works
  • database connection and migrations.
  • basic layout and base templates.
  • auth logic (login/register routes).
  • thread and post functionality.

it's a start.