We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e5010 commit 363bbd3Copy full SHA for 363bbd3
.gitignore
@@ -28,6 +28,7 @@ hs_err_pid*
28
target
29
settings.xml
30
.env*
31
+!.env.example
32
33
/data/
34
/node/
tests/load-tests/.env.example
@@ -0,0 +1,13 @@
1
+# Database connection for populating test data from Yaci Store
2
+# Copy this file to .env and fill in your values
3
+
4
+# Database connection (default rosetta-java credentials)
5
+DB_HOST=localhost
6
+DB_PORT=5432
7
+DB_NAME=rosetta-java
8
+DB_USER=rosetta_db_admin
9
+DB_PASSWORD=weakpwd#123_d
10
+DB_SCHEMA=public
11
12
+# Alternative: use a connection string
13
+# DATABASE_URL=postgresql://rosetta_db_admin:weakpwd#123_d@localhost:5432/rosetta-java
0 commit comments