You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,13 @@ Writing code and developing in this application requires running three services:
21
21
2. To run the database locally, you must have Docker installed as well as Docker Compose; afterwards, run the following command from the root directory:
22
22
23
23
```bash
24
-
docker compose -f docker-compose.dev.yml up -d
24
+
docker compose -f docker-compose.development.yaml up -d
25
25
```
26
26
27
27
or if your docker compose is old
28
28
29
29
```bash
30
-
docker-compose -f docker-compose.dev.yml up -d
30
+
docker-compose -f docker-compose.development.yaml up -d
31
31
```
32
32
33
33
This command will start API, SQL, Email, and S3 services, and bind them to appropriate ports on your local machine as specified in [docker-compose.development.yaml](./docker-compose.development.yaml).
@@ -37,13 +37,13 @@ Writing code and developing in this application requires running three services:
37
37
```bash
38
38
dev up db
39
39
#
40
-
docker compose -f docker-compose.development.yml up db
40
+
docker compose -f docker-compose.development.yaml up db
41
41
```
42
42
43
43
If you need to debug the restore, you can connect to the running SQL Server via
44
44
45
45
```bash
46
-
docker compose -f docker-compose.development.ymlexec -it db bash
46
+
docker compose -f docker-compose.development.yamlexec -it db bash
47
47
```
48
48
49
49
4. The first time you start the application, you must create a bucket named `documents` and an Access Key. Copy the access key id and secret and drop those values into the appropriate spots in the environment file. The Minio Web interface located at http://localhost:9090. Subsequent starts, it is not required to access the Minio interface.
@@ -55,7 +55,7 @@ Writing code and developing in this application requires running three services:
55
55
```bash
56
56
dev up
57
57
# or
58
-
docker compose -f docker-compose.development.yml up
58
+
docker compose -f docker-compose.development.yaml up
59
59
```
60
60
61
61
If you don't use docker see the "Without Docker" section
@@ -74,7 +74,7 @@ Writing code and developing in this application requires running three services:
74
74
75
75
```bash
76
76
docker compose \
77
-
-f docker-compose.dev.yml \
77
+
-f docker-compose.development.yaml \
78
78
exec -it db \
79
79
/opt/mssql-tools/bin/sqlcmd \
80
80
-U sa \
@@ -104,7 +104,7 @@ Writing code and developing in this application requires running three services:
104
104
To access the Database console directly use:
105
105
106
106
```bash
107
-
docker compose -f docker-compose.development.ymlexec db /opt/mssql-tools/bin/sqlcmd -U sa -s localhost -P Testing1122
107
+
docker compose -f docker-compose.development.yamlexec db /opt/mssql-tools/bin/sqlcmd -U sa -s localhost -P Testing1122
0 commit comments