Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ESA
website
Commits
78b84b8b
Commit
78b84b8b
authored
1 week ago
by
Tim Fritzen
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into deploy
parents
149560b5
6e5fab81
No related branches found
No related tags found
No related merge requests found
Pipeline
#7972
passed
1 week ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lib/server/database/db.ts
+3
-1
3 additions, 1 deletion
src/lib/server/database/db.ts
with
3 additions
and
1 deletion
src/lib/server/database/db.ts
+
3
−
1
View file @
78b84b8b
...
@@ -32,7 +32,9 @@ export const sql = building ? null as unknown as Sql : await init(postgres({
...
@@ -32,7 +32,9 @@ export const sql = building ? null as unknown as Sql : await init(postgres({
password
:
env
.
POSTGRES_PASSWORD
,
password
:
env
.
POSTGRES_PASSWORD
,
port
:
parseInt
(
env
.
POSTGRES_PORT
||
"
5432
"
),
port
:
parseInt
(
env
.
POSTGRES_PORT
||
"
5432
"
),
transform
:
postgres
.
camel
,
transform
:
postgres
.
camel
,
ssl
:
true
ssl
:
{
rejectUnauthorized
:
false
}
}));
}));
async
function
init
(
sql
:
Sql
)
{
async
function
init
(
sql
:
Sql
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment