Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jakeroggenbuck/link
- Owner: JakeRoggenbuck
- License: mit
- Created: 2021-05-26T06:22:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-08T21:33:00.000Z (over 1 year ago)
- Last Synced: 2023-07-08T22:25:19.491Z (over 1 year ago)
- Topics: rocket-rs, rust
- Language: Rust
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```