Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gizipp/simple-movie-booking
Simple movie booking web app written in Ruby on Rails
https://github.com/gizipp/simple-movie-booking
heroku herokuapp movie-booking rails ruby
Last synced: about 4 hours ago
JSON representation
Simple movie booking web app written in Ruby on Rails
- Host: GitHub
- URL: https://github.com/gizipp/simple-movie-booking
- Owner: gizipp
- Created: 2020-03-07T05:12:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:46:58.000Z (almost 2 years ago)
- Last Synced: 2023-02-26T06:56:33.112Z (over 1 year ago)
- Topics: heroku, herokuapp, movie-booking, rails, ruby
- Language: Ruby
- Homepage: https://simple-movie-booking.herokuapp.com/
- Size: 1.16 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
Simple movie ticket booking codebase - [Rails](https://rubyonrails.org/) framework based.
# Development
Clone this repository, make sure required Ruby and bundler installed, in example
```
$ ruby -v
# ruby 2.6.4p104 (2019-08-28 revision 67798) [x86_64-darwin18]$ bundler -v
Bundler version 2.1.4```
And run```
bundle install
```Recommended tools and requirement :
- Ruby 2.6.4, use [RVM](https://rvm.io/), [rbenv](https://github.com/rbenv/rbenv) or [asdf](https://github.com/asdf-vm/asdf) to install preferred version with version manager
- [Bundler](https://bundler.io/) 2.1.4, simply run `gem install bundler -v 2.1.4`
- Rails 6.0.2.1, minimal requirement ruby >= 2.5.0 and bundler >= 1.8.11Start server
```
rails s -b 0.0.0.0
# server should be running on http://localhost:3000
```If databases not created/migrated yet
```
rails db:create
rails db:migrate
```