CMU Coding Bootcamp
1{
2 services.postgres = {
3 enable = true;
4 initialDatabases = [
5 {
6 name = "supply-product";
7 schema = ./schemas/supply-product.sql;
8 }
9 ];
10 listen_addresses = "127.0.0.1";
11 hbaConf = ''
12 local all all trust
13 host all all 127.0.0.1/32 trust
14 '';
15 };
16
17 services.mongodb.enable = true;
18}