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

110 lines
2.3 KiB
Markdown
Raw Normal View History

---
id: developer_guide
title: Developer guide
---
2016-12-02 17:47:13 +01:00
## PostgreSQL
2016-11-30 23:56:33 +01:00
2019-03-05 09:26:34 +01:00
To run and develop unleash, you need to have PostgreSQL database (PostgreSQL v.9.5.x or newer) locally.
2016-11-30 23:56:33 +01:00
### Create a local unleash databases in postgres
```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
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
## Commands
```
// Install dependencies
npm install
// Start server in development
npm start:dev
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:
npm test
```
## Database changes
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
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
> npm 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
> npm run db-migrate -- up
> npm run db-migrate -- down
```
2016-11-30 23:56:33 +01:00
## Publishing / Releasing new packages
2019-03-05 09:26:34 +01:00
Please run `npm run nsp` and `npm run 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`