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
Copy file name to clipboardExpand all lines: README.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ only required to manage documents on the server or validate against the
42
42
To build the application run:
43
43
44
44
```shell
45
-
./mvn package
45
+
./mvnw package
46
46
```
47
47
48
48
The resulting jar file in the `target` folder can then be run with
@@ -129,7 +129,7 @@ only and should not be used in production.
129
129
130
130
- run `docker compose up`
131
131
- After Keycloak is up, open a second terminal window and run
132
-
`docker compose up csaf-keycloak-cli` to import a realm with all the users
132
+
`docker compose up keycloak-cli` to import a realm with all the users
133
133
and roles already set up.
134
134
- To set up our CouchDB server open `http://127.0.0.1:5984/_utils/#/setup`
135
135
and run the [Single Node Setup](https://docs.couchdb.org/en/stable/setup/single-node.html). This creates databases like **_users** and stops CouchDB from spamming our logs (Admin credentials from .env)
@@ -140,7 +140,7 @@ only and should not be used in production.
140
140
- On the left side, navigate to "Clients" and select the Secvisogram client.
141
141
- Select the **Credentials** tab and copy the Secret. This is our
142
142
`CSAF_CLIENT_SECRET` environment variable.
143
-
-[Generate a cookie secret](https://oauth2-proxy.github.io/oauth2-proxy/docs/configuration/overview/#generating-a-cookie-secret)
143
+
-[Generate a cookie secret](https://oauth2-proxy.github.io/oauth2-proxy/configuration/overview#generating-a-cookie-secret)
144
144
and paste it in `CSAF_COOKIE_SECRET`.
145
145
- restart compose
146
146
- (required for exports) install [pandoc (tested with version 2.18)](https://pandoc.org/installing.html)
@@ -154,6 +154,7 @@ response from the server.
154
154
155
155
You should now be able to access Secvisogram, navigate to `http://localhost/`.
156
156
There are the following default users:
157
+
157
158
|User |Password |Roles |
158
159
|----- |-------- |----- |
159
160
|registered |registered |**registered**|
@@ -178,12 +179,12 @@ When hostnames are changed, this has to adapted.
178
179
179
180
### build and execute tests
180
181
181
-
./mvnw clean verify
182
+
``./mvnw clean verify``
182
183
183
184
184
185
### start application
185
186
186
-
./mvnw spring-boot:run
187
+
``./mvnw spring-boot:run``
187
188
188
189
with main class: de.bsi.secvisogram.csaf_cms_backend.SecvisogramApplication
0 commit comments