Files
helsinki/Pt12/part12-containers-applications/todo-app/todo-backend/mongo/mongo-init.js
T
2024-09-30 15:32:50 +03:00

15 lines
295 B
JavaScript
Executable File

db.createUser({
user: 'the_username',
pwd: 'the_password',
roles: [
{
role: 'dbOwner',
db: 'the_database',
},
],
});
db.createCollection('todos');
db.todos.insert({ text: 'Write code', done: true });
db.todos.insert({ text: 'Learn about containers', done: false });