|
22 | 22 | "about:populateES": "//// Updates Elasticsearch to contain all the data we currently have in the database",
|
23 | 23 | "populateES": "yarn babel-node-ts scripts/populateES.ts",
|
24 | 24 | "about:dev:docker": "//// Creates the Docker containers needed to run the API locally",
|
25 |
| - "dev:docker": "docker-compose -f infrastructure/dev/docker-compose.yml up -d", |
| 25 | + "dev:docker": "docker compose -f infrastructure/dev/compose.yaml up -d", |
26 | 26 | "about:dev:docker:del": "//// Deletes the aforementioned Docker containers",
|
27 |
| - "dev:docker:del": "docker-compose -f infrastructure/dev/docker-compose.yml down -v", |
| 27 | + "dev:docker:del": "docker compose -f infrastructure/dev/compose.yaml down -v", |
28 | 28 | "about:dev:docker:server": "//// Experimental: runs the FULL STACK (ie. including searchneu) via Docker",
|
29 |
| - "dev:docker:server": "docker-compose -f infrastructure/dev/docker-compose-server.yml up -d", |
| 29 | + "dev:docker:server": "docker compose -f infrastructure/dev/docker-compose-server.yml up -d", |
30 | 30 | "about:dev:docker:server:del": "//// Deletes the aforementioned Docker containers",
|
31 |
| - "dev:docker:server:del": "docker-compose -f infrastructure/dev/docker-compose-server.yml down -v", |
| 31 | + "dev:docker:server:del": "docker compose -f infrastructure/dev/docker-compose-server.yml down -v", |
32 | 32 | "about:db:migrate": "//// Applies Prisma migrations. Think of migrations as `git` for databases - this allows us to change the structure of the DB in a way that can be easily replicated by all developers (and in production)",
|
33 | 33 | "db:migrate": "yarn prisma migrate dev",
|
34 | 34 | "about:db:refresh": "//// Generates Typescript files based on the schema of the database",
|
|
64 | 64 | "@babel/node": "^7.0.0",
|
65 | 65 | "@babel/plugin-proposal-class-properties": "^7.8.3",
|
66 | 66 | "@babel/register": "^7.0.0",
|
67 |
| - "@elastic/elasticsearch": "7.13.0", |
| 67 | + "@elastic/elasticsearch": "7.17.0", |
68 | 68 | "@prisma/client": "^4.5.0",
|
69 | 69 | "@typescript-eslint/typescript-estree": "^5.10.2",
|
70 | 70 | "amplitude": "^5.2.0",
|
|
0 commit comments