https://github.com/quasarbright/link-shortener
link shortener in ruby on rails
https://github.com/quasarbright/link-shortener
Last synced: 2 months 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 (8 months ago)
- Default Branch: main
- Last Pushed: 2025-01-01T00:36:24.000Z (6 months ago)
- Last Synced: 2025-02-16T14:26:34.831Z (5 months ago)
- Language: Ruby
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
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
```