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
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# SMR API [](https://github.com/satisfactorymodding/smr-api/actions/workflows/build.yml)
1
+
# SMR API [](https://codecov.io/gh/satisfactorymodding/smr-api)
2
2
3
3
The Satisfactory Mod Repository backend API
4
4
@@ -30,7 +30,7 @@ To run the API, you will need to have a working Postgres, Redis and Storage. The
30
30
start via:
31
31
32
32
```bash
33
-
docker-compose -f docker-compose.dev.yml up -d
33
+
docker-compose -f docker-compose-dev.yml up -d
34
34
```
35
35
36
36
It is suggested you create a configuration file at `config.json` (but you can also use environment variables).
@@ -49,6 +49,14 @@ Main configuration options:
49
49
50
50
The config format can be seen in `config/config.go` (each dot means a new level of nesting).
51
51
52
+
After startup requires the following minio commands to be executed:
53
+
54
+
```shell
55
+
mc aliassetlocal http://localhost:9000 minio minio123
56
+
mc admin user svcacct add local minio --access-key REPLACE_ME_KEY --secret-key REPLACE_ME_SECRET
57
+
mc anonymous set public local/smr
58
+
```
59
+
52
60
## Contributing
53
61
54
62
Before contributing, please run the [linter](https://golangci-lint.run/) to ensure the code is clean and well-formed:
0 commit comments