mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add automated dev setup using Gitpod
This commit is contained in:
6
support/docker/gitpod/setup_postgres.sql
Normal file
6
support/docker/gitpod/setup_postgres.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
create database peertube_dev;
|
||||
create user peertube password 'peertube';
|
||||
grant all privileges on database peertube_dev to peertube;
|
||||
\c peertube_dev
|
||||
CREATE EXTENSION pg_trgm;
|
||||
CREATE EXTENSION unaccent;
|
||||
Reference in New Issue
Block a user