The backend of a gist server written in Rust
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Dylan Baker 52ebbc1774 Add rsyncignore 6年前
migrations Rename Gists to Snippets 6年前
src Explicit 404 page 6年前
templates Grey pre background on index 6年前
.gitignore Initial commit 6年前
.rsyncignore Add rsyncignore 6年前
Cargo.lock Heroku config 6年前
Cargo.toml Rename 6年前
LICENSE Add license and readme 6年前
Procfile Set in Procfile 6年前
README.md Add license and readme 6年前
RustConfig Update rust config 6年前
diesel.toml Initial commit 6年前
rust-toolchain Heroku config 6年前

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