0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00
penpot/docker/gitpod/files/postgresql_init.sql

4 lines
91 B
MySQL
Raw Normal View History

:tada: Fully automate dev setup with Gitpod. This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. :whale: Gitpod docker image with Clojure Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :whale: Fix path to GitPod docker image Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :whale: Use sudo for setup Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :whale: More sudo commands Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :whale: Remove penpot user in gitpod Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :whale: Brew install redis Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Init DB and penpot user Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :whale: Switch user for installs Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Improve startup and DB init Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Configure gitpod tasks Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Configure gitpod ports Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Setup for mailhog Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :bug: Use perms to install mailhog :bug: Install mailhog before workspace creation Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io> :wrench: Manage signed commits Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Configure tasks to wait on ports :wrench: Improve Gitpod config Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :arrow_up: Upgrade deps in gitpod Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :art: Use absolute path for cd Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Add nginx conf Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Fix nginx config for gitpod Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Ensure nginx listens all incoming :art: Change layers order Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :art: Change layers order Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :wrench: Set Nginx logs permissions Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com> :bug: Use sudo to create nginx logs Signed-off-by: madmath03 <mb.mathieu.brunot@gmail.com>
2021-02-28 19:09:42 -05:00
CREATE DATABASE penpot;
CREATE USER penpot PASSWORD 'penpot';
ALTER ROLE penpot SUPERUSER;