2021-06-04 11:17:15 +02:00
## Introduction {#introduction}
2021-05-18 11:19:33 +02:00
Before developing on this project you will need two things:
- PostgreSQL 10.x or newer
- Node.js 14.x or newer
```sh
2021-10-15 19:43:29 +02:00
yarn install
yarn run start:dev
2021-05-18 11:19:33 +02:00
```
2018-11-20 20:34:42 +01:00
2021-06-04 11:17:15 +02:00
## PostgreSQL {#postgresql}
2016-11-30 23:56:33 +01:00
2020-10-30 09:56:17 +01:00
To run and develop unleash, you need to have PostgreSQL database (PostgreSQL v10.x or newer) locally.
2021-03-09 21:44:45 +01:00
> Unleash currently also work with PostgreSQL v9.5+, but this might change in a future feature release, and we have stopped running automatic integration tests below PostgreSQL v10.
2016-11-30 23:56:33 +01:00
2021-06-04 11:17:15 +02:00
### Create a local unleash databases in postgres {#create-a-local-unleash-databases-in-postgres}
2016-11-30 23:56:33 +01:00
```bash
$ psql postgres < < SQL
CREATE USER unleash_user WITH PASSWORD 'passord';
CREATE DATABASE unleash;
GRANT ALL PRIVILEGES ON DATABASE unleash to unleash_user;
CREATE DATABASE unleash_test;
GRANT ALL PRIVILEGES ON DATABASE unleash_test to unleash_user;
SQL
```
2019-01-18 19:08:34 +01:00
> Password is intentionally set to 'passord', which is the Norwegian word for password.
2016-11-30 23:56:33 +01:00
Then set env vars:
2018-07-12 16:15:02 +02:00
(Optional as unleash will assume these as default values).
2016-11-30 23:56:33 +01:00
```
export DATABASE_URL=postgres://unleash_user:passord@localhost:5432/unleash
export TEST_DATABASE_URL=postgres://unleash_user:passord@localhost:5432/unleash_test
```
2021-06-04 11:17:15 +02:00
## PostgreSQL with docker {#postgresql-with-docker}
2016-11-30 23:56:33 +01:00
2019-03-05 09:26:34 +01:00
If you don't want to install PostgreSQL locally, you can spin up an Docker instance. We have created a script to ease this process: `scripts/docker-postgres.sh`
2016-11-30 23:56:33 +01:00
2021-06-04 11:17:15 +02:00
## Start the application {#start-the-application}
2021-05-18 11:19:33 +02:00
In order to start the application you will need Node.js v14.x or newer installed locally.
2016-11-30 23:56:33 +01:00
```
// Install dependencies
2021-10-15 19:43:29 +02:00
yarn install
2016-11-30 23:56:33 +01:00
// Start server in development
2021-10-15 19:43:29 +02:00
yarn start:dev
2016-11-30 23:56:33 +01:00
2017-02-15 22:26:08 +01:00
// Unleash UI
2016-11-30 23:56:33 +01:00
http://localhost:4242
2017-02-15 22:26:08 +01:00
// API:
http://localhost:4242/api/
2016-11-30 23:56:33 +01:00
// Execute tests in all packages:
2021-10-15 19:43:29 +02:00
yarn test
2016-11-30 23:56:33 +01:00
```
2021-06-04 11:17:15 +02:00
## Database changes {#database-changes}
2016-11-30 23:56:33 +01:00
2018-11-22 11:20:28 +01:00
We use database migrations to track database changes.
2016-11-30 23:56:33 +01:00
2021-06-04 11:17:15 +02:00
### Making a schema change {#making-a-schema-change}
2018-11-22 11:20:28 +01:00
2019-03-05 09:26:34 +01:00
To run migrations, you will set the environment variable for DATABASE_URL
2016-12-12 16:52:20 +01:00
`export DATABASE_URL=postgres://unleash_user:passord@localhost:5432/unleash`
2016-11-30 23:56:33 +01:00
2018-11-22 11:20:28 +01:00
Use db-migrate to create new migrations file.
2016-12-09 17:30:12 +01:00
```bash
2021-10-15 19:43:29 +02:00
> yarn run db-migrate create YOUR-MIGRATION-NAME
2016-12-09 17:30:12 +01:00
```
2018-11-22 11:20:28 +01:00
All migrations require one `up` and one `down` method.
2016-12-10 11:35:13 +01:00
Example of a typical migration:
```js
/* eslint camelcase: "off" */
'use strict';
2018-11-22 11:20:28 +01:00
exports.up = function(db, cb) {
db.createTable(
'examples',
{
id: { type: 'int', primaryKey: true, notNull: true },
created_at: { type: 'timestamp', defaultValue: 'now()' },
},
cb,
);
2016-12-10 11:35:13 +01:00
};
2018-11-22 11:20:28 +01:00
exports.down = function(db, cb) {
return db.dropTable('examples', cb);
2016-12-10 11:35:13 +01:00
};
2018-11-22 11:20:28 +01:00
```
2016-12-09 17:30:12 +01:00
2016-12-12 16:52:20 +01:00
Test your migrations:
```bash
2021-10-15 19:43:29 +02:00
> yarn run db-migrate up
> yarn run db-migrate down
2016-12-12 16:52:20 +01:00
```
2016-11-30 23:56:33 +01:00
2021-06-04 11:17:15 +02:00
## Publishing / Releasing new packages {#publishing--releasing-new-packages}
2016-11-30 23:56:33 +01:00
2021-10-15 19:43:29 +02:00
Please run `yarn test` checks before publishing.
2016-11-30 23:56:33 +01:00
Run `npm run publish` to start the publishing process.
2018-11-22 11:20:28 +01:00
`npm run publish:dry`