Version: 0.7.1
Last Updated: Unknown
Use this tempalate to generate new lift projects.
| Variable | Data Type | Info |
|---|---|---|
name | string | Name of the blog post |
1---2basedir: content/blog3---4---5date: "<%= name.split('-').filter((_data, index) => index < 3).join("-") %>"6image: https://cdn.dennisokeeffe.com/assets/<%= name %>/main-image.webp7title: <%= _.startCase(name.split('-').filter((_data, index) => index >= 3)) %>8description: <%= description %>9tags: "ruby,ruby-on-rails"10icons: "dok,ruby,rails"11series:12 - "50 Days of Ruby": 013---1415This post will ...1617Source code can be found [here](https://github.com/okeeffed/copy-replace)1819## Prerequisites20211. Basic familiarity with setting up a [new Rails project](https://guides.rubyonrails.org/getting_started.html).2223## Getting started2425We will use Rails to initialize the project `copy-replace`:2627```s28# Create a new rails project29$ rails new demo-rails-with-react-frontend -j esbuild30$ cd demo-rails-with-react-frontend3132# Start the server33$ bin/rails s34```3536At this stage, our project is now ready to start working with.3738## ...3940...4142## Summary4344Today's post demonstrated how to ...4546## Resources and further reading4748- [Rails getting started](https://guides.rubyonrails.org/getting_started.html)49- [Source code](https://github.com/okeeffed/copy-replace)5051_Photo credit: [`user`](https://unsplash.com/@user)_