feat: basic docker-compose and init files
Some checks failed
Lint front projects / Next front lint (push) Has been cancelled
Test front projects / Next front test (push) Has been cancelled

This commit is contained in:
2026-02-01 12:23:16 +01:00
parent d79d82136d
commit 1bdefcce95
2 changed files with 29 additions and 0 deletions

8
mongodb/init.js Normal file
View File

@@ -0,0 +1,8 @@
db.createUser({
user: "dbuser",
pwd: "dbpassword",
roles: [{
role: "readWrite",
db: "path"
}]
});