Skip to content

Commit

Permalink
README - add more instructions for database setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lwih committed Dec 2, 2023
1 parent 4caa82e commit c66ac41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: "Release"

on:
push:
branches: ["main"]
# push:
# branches: ["main"]
release:
types: [published]

Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ Before trying to run the project, make sure you have:

- installed Postgres 15
- created the `rapportnavdb` database with the right users and passwords
- created a `metabase` schema
- on macOS: `createdb rapportnavdb`
- created the role `postgres`: `createuser --interactive`
- get into the database: `postgres -d rapportnavdb -U postgres -h localhost`
- check the role is present with the cmd: `\du`
- created a `metabase` schema" `CREATE SCHEMA metabase;`

### Running the project

Expand Down

0 comments on commit c66ac41

Please sign in to comment.