Skip to content

Commit

Permalink
Merge branch 'category-score' into dependabot/npm_and_yarn/express-4.…
Browse files Browse the repository at this point in the history
…17.3
  • Loading branch information
jessehartloff authored Apr 18, 2023
2 parents 9510532 + 6026dd7 commit 8d956f2
Show file tree
Hide file tree
Showing 88 changed files with 1,963 additions and 130 deletions.
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @daviddob @MikeDrewitt @jessehartloff
* @daviddob @MikeDrewitt @jessehartloff @NicholasMy

# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
Expand Down Expand Up @@ -34,4 +34,4 @@

# In this example, @doctocat owns any file in the `/docs`
# directory in the root of your repository.
#/docs/ @doctocat
#/docs/ @doctocat
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ docker run \
-d postgres
```

Install all node dependencies. All of the database environment variables can change, and can be set as environment variables on your machine if you want to overwrite the defaults
```
docker run \
--name minio \
-p 9002:9000 \
-p 9001:9001 \
-v /tmp/data:/data \
-e "MINIO_ROOT_USER=typescript_user" \
-e "MINIO_ROOT_PASSWORD=changeMe" \
-d minio/minio server /data --console-address ":9001"
```

Install all node dependencies. All of the database environment variables can change, and can be set as environment variables on your machine if you want to overwrite the defaults

```
Expand All @@ -37,6 +49,7 @@ Run the setup script to create local development auth keys. These are used in lo
npm run generate-config
```


Run the initial migrations to setup our DB schema

```
Expand Down
6 changes: 6 additions & 0 deletions config/default.yml.template
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ database:
password: 'password'
name: 'typescript_api'

minio:
host: localhost
port: 9002
username: 'typescript_user'
password: 'changeMe'

logging:
db: false

Expand Down
Loading

0 comments on commit 8d956f2

Please sign in to comment.