Skip to content

Commit

Permalink
change to postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Jun 26, 2024
1 parent f1317e9 commit 568edb2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ JWT_SECRET=L9qknFZyWHDSVXXe1TjUsR7XQsxkbb8B
LOG_CHANNEL=stack
LOG_LEVEL=debug

DB_CONNECTION=sqlite
DB_HOST=
DB_PORT=
DB_CONNECTION=postgres
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=goravel
DB_USERNAME=
DB_PASSWORD=
DB_USERNAME=goravel
DB_PASSWORD=goravel

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
go: [ "1.21" ]
runs-on: ubuntu-latest
steps:
# - name: Set up PostgreSQL
# uses: harmon758/postgresql-action@v1
# with:
# postgresql version: '11'
# postgresql db: 'goravel'
# postgresql user: 'goravel'
# postgresql password: 'goravel'
- name: Set up PostgreSQL
uses: harmon758/postgresql-action@v1
with:
postgresql version: '11'
postgresql db: 'goravel'
postgresql user: 'goravel'
postgresql password: 'goravel'
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
Expand Down

0 comments on commit 568edb2

Please sign in to comment.