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
where the `project-name` is exactly the one you chose before.
21
21
22
22
> ⚠️ You may want to choose a different database than Postgres, but most of the time this will be your choice.\
23
-
> If you do not need a DB you may rethink the fact that you may not need Rails at all: Take a look at [Sinatra](http://www.sinatrarb.com/) or [Angular](https://angular.io/)\
24
23
> You might also need actionmailbox of course, so always double-check the parameters that you are using.
25
24
26
25
> ⭐️ This setup does not include either js-bundling nor css-bundling by default.\
27
26
> It will start with the simplest possible Rails setup and will use sprockets and importmaps.\
28
27
> If you need to do fancy stuff, discuss with your team the opportunity of including a js-bundling and css-bundling tool.\
29
28
> We want to go ["no build"](https://www.youtube.com/watch?v=iqXjGiQ_D-A) whenever possible.
30
29
31
-
* Run `bin/setup`
32
-
33
30
* Run `bundle exec rails db:migrate` to generate an empty `schema.rb` file.
31
+
* Run `bin/setup`
34
32
35
-
* Then check your default Rails setup by running `rails s` and visiting http://localhost:3000.
33
+
* Then check your default Rails setup by running `bin/run` and visiting http://[project-name].localhost:3000.
36
34
You should be on Rails now, yay!
37
35
* Finally check if http://localhost:3000/up is green.
0 commit comments