Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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