https://github.com/vishaltaj/url_shortener
A Simple Rails Application with URL shortener logic
https://github.com/vishaltaj/url_shortener
database rails url-shortener
Last synced: 2 months ago
JSON representation
A Simple Rails Application with URL shortener logic
- Host: GitHub
- URL: https://github.com/vishaltaj/url_shortener
- Owner: VishalTaj
- Created: 2019-11-14T02:36:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-08T20:23:15.000Z (over 3 years ago)
- Last Synced: 2025-06-10T14:44:28.091Z (about 1 year ago)
- Topics: database, rails, url-shortener
- Language: Ruby
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
## Setup
```
$ bundle install
```
### Setup Database
add database configuration to `database.yml`
```
$ rake db:create
```
```
$ rake db:migrate
```
### Adding application constants
add `settings.yml` to app's `config/` folder and then amend your offset value to it
```
offset: 98
```
### Starting Application
```
$ rails s
```