Skip to content

Commit

Permalink
Merge pull request #1981 from scpwiki/build-issues
Browse files Browse the repository at this point in the history
Fix: Build regressions
  • Loading branch information
emmiegit authored Jul 11, 2024
2 parents 66b250a + f99f52e commit 7ec1092
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 2 additions & 0 deletions framerail/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
Expand Down
8 changes: 1 addition & 7 deletions install/files/postgres/init/02-seed.sql
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
SET default_transaction_read_only = off;

CREATE ROLE wikijump
WITH INHERIT NOSUPERUSER NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS ENCRYPTED PASSWORD 'wikijump';

CREATE DATABASE wikijump
WITH OWNER wikijump;

CREATE ROLE wikijump_ro
WITH INHERIT NOSUPERUSER NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS ENCRYPTED PASSWORD 'wikijump_ro';
WITH INHERIT NOSUPERUSER NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'wikijump_ro';

\connect wikijump

Expand Down

0 comments on commit 7ec1092

Please sign in to comment.