Skip to content

Commit

Permalink
rfac: server address
Browse files Browse the repository at this point in the history
  • Loading branch information
yp969803 committed Dec 30, 2024
1 parent 7ebc6ae commit 32f7347
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ It is a platform to provide automation to CD in monolythic server.
apt install openjdk-17-jdk openjdk-17-jre
```

- Install and run autoCD

```
VERSION=1.0.0
wget https://github.com/fordevio/autoCD/releases/download/v$VERSION/autocd-$VERSION.zip
unzip autocd-$VERSION.zip
sudo nohup java -jar autocd-$VERSION.jar > output.log 2>&1 &
```
The application is running in http://localhost:5001
Output of the application is seen output.log
2 changes: 1 addition & 1 deletion src/producer/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
spring.application.name=producer
server.port=5001
server.address=0.0.0.0
spring.datasource.url=jdbc:h2:file:/var/autocd/producerData/data;DB_CLOSE_ON_EXIT=FALSE;AUTO_RECONNECT=TRUE
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=admin
Expand All @@ -10,4 +11,3 @@ spring.h2.console.path=/h2-console
logging.level.org.springframework.security=DEBUG
spring.devtools.livereload.enabled=true
auto.create.topics.enable=true
kafka.host=${KAFKA_HOST}
6 changes: 3 additions & 3 deletions src/producer/src/main/resources/static/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"files": {
"main.css": "/static/css/main.092e2e82.css",
"main.js": "/static/js/main.88d30e6b.js",
"main.js": "/static/js/main.da32c1d1.js",
"static/js/453.419a5d54.chunk.js": "/static/js/453.419a5d54.chunk.js",
"static/media/autocd-logo.png": "/static/media/autocd-logo.a4cd8552835c4e76a8b9.png",
"index.html": "/index.html",
"main.092e2e82.css.map": "/static/css/main.092e2e82.css.map",
"main.88d30e6b.js.map": "/static/js/main.88d30e6b.js.map",
"main.da32c1d1.js.map": "/static/js/main.da32c1d1.js.map",
"453.419a5d54.chunk.js.map": "/static/js/453.419a5d54.chunk.js.map"
},
"entrypoints": [
"static/css/main.092e2e82.css",
"static/js/main.88d30e6b.js"
"static/js/main.da32c1d1.js"
]
}
2 changes: 1 addition & 1 deletion src/producer/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="A tool to automate the process of Continuous Deployment in monolithic servers"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>autoCD</title><script defer="defer" src="/static/js/main.88d30e6b.js"></script><link href="/static/css/main.092e2e82.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="A tool to automate the process of Continuous Deployment in monolithic servers"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>autoCD</title><script defer="defer" src="/static/js/main.da32c1d1.js"></script><link href="/static/css/main.092e2e82.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 32f7347

Please sign in to comment.