Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikolalsvk/restaurant-reservations
Ruby on Rails project for Internet Software Architecture course
https://github.com/nikolalsvk/restaurant-reservations
activerecord postgresql rails reservation ruby
Last synced: about 1 month ago
JSON representation
Ruby on Rails project for Internet Software Architecture course
- Host: GitHub
- URL: https://github.com/nikolalsvk/restaurant-reservations
- Owner: nikolalsvk
- Created: 2015-11-23T14:20:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T19:11:57.000Z (over 7 years ago)
- Last Synced: 2024-10-18T20:39:05.485Z (3 months ago)
- Topics: activerecord, postgresql, rails, reservation, ruby
- Language: Ruby
- Homepage:
- Size: 1.24 MB
- Stars: 8
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://semaphoreci.com/api/v1/nikolalsvk/restaurant-reservations/branches/master/shields_badge.svg)](https://semaphoreci.com/nikolalsvk/restaurant-reservations)
# Restaurant Reservations
Ruby on Rails project for Internet Software Architecture subject on
Faculty of Technical Sciences in Novi Sad.App lets you reserve tables at restaurants, invite friends to eat
and rate restaurants after you visit them.#### How to run?
1. Install gems with:
```
$ bundle
```
2. Create database
```
$ bundle exec rake db:create db:migrate db:test:prepare
```
3. Seed some users and restaurants
```
$ bundle exec rake db:seed
```
4. Run Rails server
```
$ bundle exec rails s
```
5. Visit [http://localhost:3000/](http://localhost:3000/)