| 12345678910111213 |
- #!/usr/bin/env bash
- docker run --rm -it postgres psql "host=swarm1.titleproject.space sslmode=require port=30000 user=postgres"
- # create database unleash;
- # create user unleash with encrypted password 'titleproject';
- # grant all privileges on database unleash to unleash;
- # Unleash Admin: Configure -> API Access -> Create API token: user web-dev, type client, project default, environment development
- # Update token in stack, unleash-proxy
- # Unleash Admin: Create "Image", "Notification" and "Table" feature toggles
- npx degit sveltejs/template . --force
- npm install
|