Skip to content
Snippets Groups Projects

Add support of Rails 5

Merged blackst0ne requested to merge blackst0ne-rails5-support into master
All threads resolved!
Files
3
+ 8
0
@@ -94,7 +94,11 @@ Check the [GitLab Geo instructions](./howto/geo.md).
Start GitLab and all required services:
```sh
# Rails 4 (current stable)
gdk run
# Rails 5.0 (next version, we're migrating to it now)
gdk run rails5
```
To start only the databases use:
@@ -106,7 +110,11 @@ gdk run db
To start only the app (assuming the DBs are already running):
```sh
# Rails 4 (current stable)
gdk run app
# Rails 5.0 (next version, we're migrating to it now)
gdk run app rails5
```
To access GitLab you may now go to http://localhost:3000 in your
Loading