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

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

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
```