commands 570 B

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