Add in MUI and stepper component #47

Merged
danalambert merged 12 commits from dana/add-react-wizard into main 2021-10-14 11:30:41 +13:00
3 changed files with 10 additions and 0 deletions
Showing only changes of commit a66b8820df - Show all commits

View file

@ -0,0 +1,6 @@
CREATE DATABASE right_tree;
\c right_tree
CREATE EXTENSION IF NOT EXISTS postgis;
GRANT ALL ON geometry_columns TO PUBLIC;
GRANT ALL ON spatial_ref_sys TO PUBLIC;

3
database/init_database.sh Executable file
View file

@ -0,0 +1,3 @@
docker-compose down --remove-orphans --volumes
docker-compose up postgres | sed '/PostgreSQL init process complete; ready for start up./q'
docker-compose down

View file

@ -38,6 +38,7 @@ services:
container_name: postgres
volumes:
- local-postgres-data:/var/lib/postgresql/data
- ./database/init:/docker-entrypoint-initdb.d
ports:
- "5432:5432"
environment: