Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 1.31 KB

File metadata and controls

33 lines (23 loc) · 1.31 KB

Create a React-Rails App Example

This is working example for the Today I Learned How to Create a React-Rails App blog post.

GitHub Sponsors

Quickstart

Install Docker and then build the containers by running the following command:

docker-compose build web

After the containers are built you need to update the yarn dependencies and create the databases:

docker-compose run web bash

yarn install
rake db:create
exit

You can test if everything is working correctly by running the container and navigating to localhost:3000. You should see the "Welcome to Rails" page if everything is working correctly.

docker-compose up web

Contributing

If you have any questions, notice a bug, or have a suggestion/enhancment please let me know by opening a issue or pull request.

Acknowledgements

Thanks to folks who created React-Rails.