Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jakeroggenbuck/link

I url shortener using Rocket.rs & Diesel.rs; being used in production
https://github.com/jakeroggenbuck/link

rocket-rs rust

Last synced: 5 days ago
JSON representation

I url shortener using Rocket.rs & Diesel.rs; being used in production

Awesome Lists containing this project

README

        

# link ![Rust](https://img.shields.io/github/actions/workflow/status/jakeroggenbuck/link/rust.yml?branch=main&style=for-the-badge)

## Description
A public mirror of the private development link repository, without the .env and Rocket.toml hosted on heroku

## Setup
.env needs the following
```sh
DATABASE_URL=url or uri to database
AUTH_KEY=an auth key
```
Rocket.toml
```toml
# Database
[global.databases.redirect-api]
url = "postgres://:@localhost/redirect-api"
```