Skip to content

Commit edc1b14

Browse files
Update tomcat and spring run file names (#28)
2 parents 71dfddf + 62cdcfd commit edc1b14

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

Fluxnova-build-readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ You can run Fluxnova in two modes: **Tomcat** and **Spring Boot**.
175175
```
176176
3. Start the Fluxnova Tomcat server:
177177
```bash
178-
sh start-camunda.sh
178+
sh start-fluxnova.sh
179179
```
180-
4. Access the Fluxnova Cockpit at [http://localhost:8080/camunda/app/cockpit/default/#/dashboard](http://localhost:8080/camunda/app/cockpit/default/#/dashboard)
180+
4. Access the Fluxnova Monitoring interface at [http://localhost:8080/fluxnova/app/monitoring/default/#/dashboard](http://localhost:8080/camunda/app/cockpit/default/#/dashboard)
181181

182182
### Running the Spring Boot Version
183183

@@ -193,7 +193,7 @@ You can run Fluxnova in two modes: **Tomcat** and **Spring Boot**.
193193
```bash
194194
sh start.sh
195195
```
196-
4. Access the Fluxnova Cockpit at [http://localhost:8080/fluxnova/app/cockpit/default/#/dashboard](http://localhost:8080/fluxnova/app/cockpit/default/#/dashboard)
196+
4. Access the Fluxnova Monitoring interface at [http://localhost:8080/fluxnova/app/monitoring/default/#/dashboard](http://localhost:8080/fluxnova/app/cockpit/default/#/dashboard)
197197

198198
### Running with Docker
199199

distro/run/assembly/resources/shutdown.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
SET BASEDIR=%~dp0
44
SET EXECUTABLE=%BASEDIR%internal\run.bat
55

6-
REM stop Camunda Run
6+
REM stop Fluxnova Run
77
call "%EXECUTABLE%" stop

distro/run/assembly/resources/start.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ if [ $# -eq 0 ]; then
2929
(sleep 10; $BROWSER "http://localhost:8080/fluxnova-welcome/index.html";) &
3030
fi
3131

32-
# start Camunda Run in the background
32+
# start Fluxnova Run in the background
3333
exec $runScript start --detached
3434

3535
else
36-
# start Camunda Run with the passed arguments
36+
# start Fluxnova Run with the passed arguments
3737
exec $runScript start "$@"
3838
fi
3939

distro/tomcat/assembly/assembly.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,23 +141,23 @@
141141
<outputDirectory></outputDirectory>
142142
</file>
143143
<file>
144-
<source>src/start-camunda.bat</source>
144+
<source>src/start-fluxnova.bat</source>
145145
<filtered>true</filtered>
146146
<outputDirectory></outputDirectory>
147147
</file>
148148
<file>
149-
<source>src/start-camunda.sh</source>
149+
<source>src/start-fluxnova.sh</source>
150150
<filtered>true</filtered>
151151
<outputDirectory></outputDirectory>
152152
<fileMode>0755</fileMode>
153153
</file>
154154
<file>
155-
<source>src/shutdown-camunda.bat</source>
155+
<source>src/shutdown-fluxnova.bat</source>
156156
<filtered>true</filtered>
157157
<outputDirectory></outputDirectory>
158158
</file>
159159
<file>
160-
<source>src/shutdown-camunda.sh</source>
160+
<source>src/shutdown-fluxnova.sh</source>
161161
<filtered>true</filtered>
162162
<outputDirectory></outputDirectory>
163163
<fileMode>0755</fileMode>
File renamed without changes.
File renamed without changes.

distro/tomcat/assembly/src/start-camunda.bat renamed to distro/tomcat/assembly/src/start-fluxnova.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set "CATALINA_HOME=%CD%\server\apache-tomcat-${version.tomcat}"
44

5-
echo "starting Camunda Platform ${project.version} on Apache Tomcat ${version.tomcat}"
5+
echo "starting Fluxnova Platform ${project.version} on Apache Tomcat ${version.tomcat}"
66

77
cd server\apache-tomcat-${version.tomcat}\bin\
88
start startup.bat

distro/tomcat/assembly/src/start-camunda.sh renamed to distro/tomcat/assembly/src/start-fluxnova.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
BROWSERS="xdg-open gnome-www-browser x-www-browser firefox chromium chromium-browser google-chrome"
1111
fi
1212

13-
echo "starting Camunda Platform on Tomcat Application Server";
13+
echo "starting Fluxnova Platform on Tomcat Application Server";
1414

1515
if [ -z "$BROWSER" ]; then
1616
for executable in $BROWSERS; do

distro/wildfly/assembly/assembly.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@
7979
<outputDirectory></outputDirectory>
8080
</file>
8181
<file>
82-
<source>src/start-camunda.bat</source>
82+
<source>src/start-fluxnova.bat</source>
8383
<filtered>true</filtered>
8484
<outputDirectory></outputDirectory>
8585
</file>
8686
<file>
87-
<source>src/start-camunda.sh</source>
87+
<source>src/start-fluxnova.sh</source>
8888
<filtered>true</filtered>
8989
<outputDirectory></outputDirectory>
9090
<fileMode>0755</fileMode>
File renamed without changes.

0 commit comments

Comments
 (0)