Skip to content

Commit 56a9c6c

Browse files
committed
fix password not required
1 parent ee8da72 commit 56a9c6c

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CONTRIBUTE.md renamed to CONTRIBUTING.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to Fluent PostgreSQL
22

3-
👋 Welcome to the Vapor team! Join us on Slack ([http://vapor.team](http://vapor.team)) if you haven't already.
3+
👋 Welcome to the Vapor team!
44

55
## Bootstrap
66

@@ -24,5 +24,14 @@ If you add a new `XCTestCase` subclass, make sure to add it to the `Tests/LinuxM
2424
If you are fixing a single GitHub issue in particular, you can add a test named `testGH<issue number>` to ensure
2525
that your fix is working. This will also help prevent regression.
2626

27+
## SemVer
28+
29+
Vapor tries really hard to follow strict [SemVer](https://semver.org). This means that any changes to the source code that can cause
30+
existing code to stop compiling _must_ wait until the next major version to be included.
31+
32+
Code that is only additive and will not break any existing code can be included in the next minor release.
33+
2734

2835
Thanks! 🙌
36+
37+
Join us on Slack if you have any questions: [http://vapor.team](http://vapor.team).

Tests/FluentPostgreSQLTests/FluentPostgreSQLTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class FluentPostgreSQLTests: XCTestCase {
1515
port: 5432,
1616
username: "vapor_username",
1717
database: "vapor_database",
18-
password: "vapor_password"
18+
password: nil
1919
)
2020
database = PostgreSQLDatabase(config: config)
2121
benchmarker = Benchmarker(database, on: eventLoop, onFail: XCTFail)

circle.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
environment:
1616
POSTGRES_USER: vapor_username
1717
POSTGRES_DB: vapor_database
18-
POSTGRES_PASSWORD: vapor_password
1918
steps:
2019
- run:
2120
name: Update APT

contribute_boostrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ docker stop vapor-psql
99
docker rm vapor-psql
1010

1111
echo "💧 creating vapor-psql dev db..."
12-
docker run --name vapor-psql -e POSTGRES_USER=vapor_username -e POSTGRES_DB=vapor_database -e POSTGRES_PASSWORD=vapor_password -p 5432:5432 -d postgres:latest
12+
docker run --name vapor-psql -e POSTGRES_USER=vapor_username -e POSTGRES_DB=vapor_database -p 5432:5432 -d postgres:latest
1313

1414
echo "💧 generating xcode proj..."
1515
swift package generate-xcodeproj

0 commit comments

Comments
 (0)