Most Web Framework PostgreSQL Adapter
License: BSD-3-Clause
npm install @themost/pg
Register PostgreSQL adapter on app.json as follows:
"adapterTypes": [
...
{ "name":"PostgreSQL Data Adapter", "invariantName": "postgres", "type":"@themost/pg" }
...
],
adapters: {
"postgres": { "name":"local-db", "invariantName":"postgres", "default":true,
"options": {
"host":"localhost",
"post":5432,
"user":"user",
"password":"password",
"database":"db"
}
}
}
Clone project and create a .env
file to set testing environment variables
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=pass
NODE_ENV=development
(*) DB_PASSWORD is optional
If you are using Gitpod create a .env
file and set DB_USER=gitpod
DB_HOST=localhost
DB_PORT=5432
DB_USER=gitpod
NODE_ENV=development
Execute npm test
.
The operation will create a new test database test_db
with sample data that is going to be used for testing adapter.