Please follow below steps to install and setup all prerequisites:
In order to use build tools you will need to download and install Node. If you do not have Node installed already, you can get it by downloading the package installer from the official website. Please download the stable version of Node.
Ruby is required for running various development tools and scripts. Make sure you have latest version of Ruby installed.
Rails is also required to run application. Ensure you have Rails installed, along with the required Ruby version.
| Command | Description |
|---|---|
bundle install |
This would install all required dependencies. |
bin/rails server or rails s
|
Runs the project locally, starts the development server. |
In separate terminal run following commands:
| Command | Description |
|---|---|
yarn or npm i
|
This would install all required dependencies. |
bin/vite dev |
Starts the Vite development server. |
bin/vite build |
Makes a production bundle with Vite using Rollup behind the scenes. |