Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quasarbright/link-shortener
link shortener in ruby on rails
https://github.com/quasarbright/link-shortener
Last synced: 26 days ago
JSON representation
link shortener in ruby on rails
- Host: GitHub
- URL: https://github.com/quasarbright/link-shortener
- Owner: quasarbright
- Created: 2024-10-21T18:53:46.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-01T01:10:30.000Z (3 months ago)
- Last Synced: 2024-11-06T07:42:14.308Z (3 months ago)
- Language: Ruby
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# link-shortener
A website similar to tinyurl, where you can create a custom short url that redirects to another URL.
Made with Ruby on Rails.
Users can create, view, edit, and delete shortened links.
Only a link's creator can edit or delete it.Auth is implemented with just `bcrypt` (no auth framework)
## Dependencies
* ruby 3.3.5
* sqlite3 3.43.2
* rails 7.2.1.1## Setup
```shell
bundle install
bin/rails db:migrate
```## Run Locally
```shell
bin/rails server
```