Rails Flix is a simple application created to demonstrate the Trestle admin framework.
Admin: https://demo.trestle.io/admin —
[email protected]
/demo
Frontend: https://demo.trestle.io
Along with the core trestle gem, this demo also uses trestle-auth (for admin authentication) and trestle-search (for search in combination with pg_search).
- Trestle admin definitions located in app/admin
- Custom view partials used by admins at app/views/admin/shared
- Custom JS/CSS for admin in app/assets/javascripts/trestle and app/assets/stylesheets/trestle
- Data models in app/models (all fairly standard ActiveRecord)
Requirements: Ruby 3.3.6, PostgreSQL, Yarn
-
Clone the repository
-
Run
bundle install
to install Ruby dependencies -
Run
yarn install
to install JavaScript/CSS dependencies -
(Optional) Seed the database from TheMovieDB.org
a) Register for an account at https://www.themoviedb.org/account/signup
b) Obtain your API key at https://www.themoviedb.org/settings/api. Either add this to a
.env
file in the project root asTMDB_API_KEY
, or specify it on the command line as in the following commands.c) Create the database (default:
RailsFlix_development
), migrate and seed:$ TMDB_API_KEY={{YOUR_API_KEY}} bin/rails db:setup
d) You can fetch more (or less) data from TheMovieDB.org using the PAGES environment variable (1 page = 20 results)
$ TMDB_API_KEY={{YOUR_API_KEY}} PAGES=1 bin/rails db:setup
Note: If you choose not to seed the database, you will need to manually create an admin account. See
db/seeds.rb
or the trestle-auth README. -
Start the rails server
$ bin/rails server
-
Login to the admin at http://localhost:3000/admin. The default account created in 4c) is:
Email:
[email protected]
Password:demo
This application is available as open source under the terms of the LGPLv3 License.