Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lakshay2395/movie-booking-system
Sample movie booking system in rails
https://github.com/lakshay2395/movie-booking-system
rails5 ruby
Last synced: about 19 hours ago
JSON representation
Sample movie booking system in rails
- Host: GitHub
- URL: https://github.com/lakshay2395/movie-booking-system
- Owner: lakshay2395
- Created: 2019-12-10T18:13:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-09T01:38:18.000Z (almost 2 years ago)
- Last Synced: 2024-12-16T23:12:04.071Z (6 days ago)
- Topics: rails5, ruby
- Language: Ruby
- Size: 195 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Movie Booking System
Sample movie booking system implemented in rails.
Database schema: [Link](https://ibb.co/PZ9GtC2)# Setup
- Installation
```
bundle install
```- Run the server
```
rails s -p 8080
```
- Running tests
```
JRUBY_OPTS="--debug" bundle exec rspec
```OR
- Dockerized setup
```
docker build -t movie-booking-system:v1 .
docker run -p 8080:8080 movie-booking-system:v1
```