1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/website/docs/contributing/developer-guide.md

121 lines
2.9 KiB
Markdown
Raw Normal View History

## Introduction {#introduction}
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
```
## PostgreSQL {#postgresql}
2016-11-30 23:56:33 +01:00
To run and develop unleash, you need to have PostgreSQL database (PostgreSQL v10.x or newer) locally.
> 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
### 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
```
> 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:
(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
```
## 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
## Start the application {#start-the-application}
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
```
## 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
### 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
`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.
```bash
2021-10-15 19:43:29 +02:00
> yarn run db-migrate create YOUR-MIGRATION-NAME
```
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
```
Test your migrations:
```bash
2021-10-15 19:43:29 +02:00
> yarn run db-migrate up
> yarn run db-migrate down
```
2016-11-30 23:56:33 +01: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`