Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# NOTE: Typically, this file should not be committed into Git
PORT=3000
DATABASE_URL=postgres://user:password@localhost:5432/apollo_server
DATABASE_URL=postgres://apollo_server:apollo_server@localhost:5432/apollo_server
2 changes: 1 addition & 1 deletion bootstrap.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DROP DATABASE apollo_server;
CREATE DATABASE apollo_server;
CREATE ROLE apollo_server;
CREATE USER apollo_server WITH ENCRYPTED PASSWORD 'apollo_server';
GRANT ALL PRIVILEGES ON DATABASE apollo_server TO apollo_server;