Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vadim-geroim/flixter
A two-sided video streaming marketplace platform, featuring credit card payment capabilities, user role management, complex user interfaces, and advanced database relationships.
https://github.com/vadim-geroim/flixter
bootstrap4 carrierwave devise figaro heroku minimagick rails5 ruby simpleform stripe
Last synced: 1 day ago
JSON representation
A two-sided video streaming marketplace platform, featuring credit card payment capabilities, user role management, complex user interfaces, and advanced database relationships.
- Host: GitHub
- URL: https://github.com/vadim-geroim/flixter
- Owner: vadim-geroim
- Created: 2019-08-06T00:32:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T14:08:59.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T17:25:06.293Z (over 1 year ago)
- Topics: bootstrap4, carrierwave, devise, figaro, heroku, minimagick, rails5, ruby, simpleform, stripe
- Language: Ruby
- Homepage: https://flixter-vadim-geroim.herokuapp.com/
- Size: 3.73 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This README document steps are necessary to get the application up and running.
## Precondition
* Ruby version 2.5.3 installed
* Ruby on Rails version 5.2.3 installed## Configuration
To get started with the app, clone the repo and then install the needed gems:
````
bundle install --without production
````## Database creation and initialization
Next, migrate the database:
````
rails db:migrate
````## Services (job queues, cache servers, search engines, etc.)
Run the app in a local server:
````
rails server
````## Deployment instructions
Following instructions for Heroku:* Login to your Heroku account
````
heroku login
````
* Create Heroku app
````
heroku create your_app_name
````
* Deploy an application
````
git push heroku master
````
* Initialize database
````
heroku run rails db:migrate
heroku restart
````
* The application should be up and running