You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installation/installation.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,17 +59,19 @@ Each of the above pieces can be skipped or installed independently either using
59
59
built in installers and generators, or manually as explained in the
60
60
following sections.
61
61
62
-
> The top level component, and route is only installed if a new Rails app is detected. Otherwise you will have to choose how you want to mount your components, depending on the needs of your application. See [How to add components](#<user-content-adding-a-single-component-to-your-application>) and [mount them](#<mounting-components>) for details.
62
+
> The top level component, and route is only installed if a new Rails app is detected. Otherwise you will have to choose how you want to mount your components, depending on the needs of your application. See [How to add components](#user-content-adding-a-single-component-to-your-application) and [mount them](#mounting-components) for details.
63
63
64
64
65
65
At this point you're fully installed.
66
66
67
+
> ** Note the first time you run you app it will take 1-2 minutes to compile all the system libraries.**
68
+
67
69
If you installed into a new rails app, you can run bundle exec foreman start
68
70
to start the server, and **App** will display on the top left hand side of the page. You will find the `App` component in the `app/hyperstack/components/app.rb` file. If you edit this file and save you should see the changes reflected in the browser.
69
71
70
72
If you installed into an existing Rails apps, you can run bundle exec foreman start
71
73
to start the server, and your app should function exactly as it always has. From here, you'll need to start adding components and
72
-
and mounting them from either a view or a controller. See [How to add components](#<user-content-adding-a-single-component-to-your-application>) and [mount them](#<mounting-components>) for details.
74
+
and mounting them from either a view or a controller. See [How to add components](#adding-a-single-component-to-your-application) and [mount them](#mounting-components) for details.
73
75
74
76
## Summary of Installers and Generators
75
77
@@ -180,7 +182,7 @@ end
180
182
bundle exec rails g hyper:component Test --base-class=ApplicationComponent
181
183
```
182
184
> You can also override the base class for the entire application by setting
183
-
> the `component_base_class` config setting. See [Summary of Hyperstack Configuration Switches](#<summary-of-hyperstack-configuration-switches>) for details.
185
+
> the `component_base_class` config setting. See [Summary of Hyperstack Configuration Switches](#summary-of-hyperstack-configuration-switches) for details.
0 commit comments