From e060d6b66336dee0cc98c9037fd8c207d3a80481 Mon Sep 17 00:00:00 2001 From: rebuilt Date: Wed, 3 Jul 2024 16:37:33 -0700 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a765e31..6bb61f0 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,27 @@ And then execute: $ bundle ``` -And run the migrations: +And install the migrations: ```bash ./bin/rails dashboard:install:migrations ``` +Run the migration: +```bash +./bin/rails db:migrate +``` + +Mount the engine to your desired route: +```bash + mount Dashboard::Engine, at: "dashboard" +``` + +Navigate to the dashboard page: +If run in development: +``` +http://localhost:3000/dashboard/welcome +``` + Install javascript bundler ```bash ./bin/rails javascript:install:esbuild