From a3c24f45b9f81c46ec26b9bb938b622c76bac965 Mon Sep 17 00:00:00 2001 From: David Trattnig Date: Thu, 9 Dec 2021 18:23:18 +0100 Subject: [PATCH 1/2] Add contributing. meta#66 --- CONTRIBUTING.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..c543aa1 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,5 @@ +# Contributing + +When contributing to this repository, please first read about [contributing to AURA](https://gitlab.servus.at/aura/meta/-/blob/master/docs/development/contributions.md). Then discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. + +Please note we have a [code of conduct](/aura/meta/-/blob/master/docs/development/code_of_conduct.md), please follow it in all your interactions with the project. \ No newline at end of file -- GitLab From c865695b4527e21491d6d0e2355704eaaba1f104 Mon Sep 17 00:00:00 2001 From: David Trattnig Date: Thu, 9 Dec 2021 18:41:35 +0100 Subject: [PATCH 2/2] Add contrib script to create database. #26 --- contrib/postgres-create-database.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 contrib/postgres-create-database.sql diff --git a/contrib/postgres-create-database.sql b/contrib/postgres-create-database.sql new file mode 100644 index 0000000..ce7968c --- /dev/null +++ b/contrib/postgres-create-database.sql @@ -0,0 +1,4 @@ +\c postgres +create database aura_tank; +create user aura_tank with encrypted password '1234'; +grant all privileges on database aura_tank to aura_tank; -- GitLab