File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
# The Active Admin Store
2
2
3
- This is a test application to show off the power of Active Admin.
3
+ The [ Gauge example] ( https://github.com/getgauge/gauge-example-java ) is for this application.
4
+
5
+ # To run this app locally
6
+ ```
7
+ bundle install
8
+ bundle exec rails s
9
+ ```
10
+
11
+ # To run this app on Docker
12
+
13
+ Run the following commands and navigate to localhost:8000
14
+ ```
15
+ docker build -t gauge-demo-app .
16
+ docker run -p 8000:8000 gauge-demo-app
17
+ ```
18
+
19
+ If you are using VirtualBox to manage docker machines, ensure you have enabled port forwarding.
20
+ * Open VirtualBox. Go to Network Settings of the docker machine.
21
+ * Click port forwarding
22
+ * Add a new rule with the following details
23
+ * Name: ` Gauge `
24
+ * Protocol: ` TCP `
25
+ * Host IP: ` 127.0.0.1 `
26
+ * Host Port: ` 8000 `
27
+ * Guest IP: ` 127.0.0.1 `
28
+ * Guest Port: ` 8000 `
You can’t perform that action at this time.
0 commit comments