The backend of a gist server written in Rust
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dylan Baker 40f4b62c68 Add links to binaries to homepage vor 4 Jahren
migrations Use sha hashes instead of primary key vor 4 Jahren
src Decode raw snippets to avoid > etc vor 4 Jahren
static Add links to binaries to homepage vor 4 Jahren
templates Add links to binaries to homepage vor 4 Jahren
.gitignore Initial commit vor 4 Jahren
.rsyncignore Add rsyncignore vor 4 Jahren
Cargo.lock Use sha hashes instead of primary key vor 4 Jahren
Cargo.toml Use separate stylesheet, clean up styles vor 4 Jahren
LICENSE Add license and readme vor 4 Jahren
Procfile Set in Procfile vor 4 Jahren
README.md Add license and readme vor 4 Jahren
RustConfig Update rust config vor 4 Jahren
diesel.toml Initial commit vor 4 Jahren
rust-toolchain Heroku config vor 4 Jahren

README.md

bngl.ws server

This is the server component of the bngl.ws pastebin service.

Running the server

With cargo and diesel installed:

$ git clone https://git.sr.ht/~simulacrumparty/bnglws-server
$ cd bnglws-server
$ echo 'DATABASE_URL=postgres://username@host/dbname' > .env;
$ diesel database setup
$ cargo run