Files
connected-home/docker/postgresql/init.sql
Steve Sampson c62467417f Refactor Repo
Completed:

* Use Axum + Tower
* Setup metrics w/Prometheus & Grafana
* Setup distributed tracing w/OTLP exporter + Tempo
* Enable MQTT on RabbitMQ
* Add compatibility for docker-compose
* Update all dependencies
* Create Config Files
* Clean handling of tasks
* Migrate from Diesel ORM to SQLX

TODO:
* Fix Tilt K8S setup
* Consider Tilt docker file
2023-08-30 22:45:20 -03:00

10 lines
266 B
SQL

CREATE USER connectedhome WITH PASSWORD 'connectedhome' CREATEDB;
CREATE DATABASE connectedhome
WITH
OWNER = connectedhome
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.utf8'
LC_CTYPE = 'en_US.utf8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;