From 8dbf4e5c8ceaab90fb8925d7cf0c6b8b964b84be Mon Sep 17 00:00:00 2001 From: Ben Vezzani Date: Mon, 21 Apr 2025 11:08:18 -0400 Subject: [PATCH] cleanup and gitignore --- .gitignore | 2 ++ .idea/.gitignore | 8 -------- .idea/misc.xml | 18 ------------------ .idea/modules.xml | 8 -------- .idea/random-go.iml | 9 --------- .idea/vcs.xml | 6 ------ docker-compose.yaml | 4 ++-- docker/localstack/events.sh | 0 docker/localstack/firehose.sh | 0 9 files changed, 4 insertions(+), 51 deletions(-) create mode 100644 .gitignore delete mode 100644 .idea/.gitignore delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/random-go.iml delete mode 100644 .idea/vcs.xml mode change 100644 => 100755 docker/localstack/events.sh mode change 100644 => 100755 docker/localstack/firehose.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c6ef218 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea + diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 3a0b0a5..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 2fa2ecb..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/random-go.iml b/.idea/random-go.iml deleted file mode 100644 index 5e764c4..0000000 --- a/.idea/random-go.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml index df71c85..2142c66 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,8 +4,8 @@ services: ports: - "5432:5432" environment: - POSTGRES_USER: telly - POSTGRES_PASSWORD: telly + POSTGRES_USER: test + POSTGRES_PASSWORD: test POSTGRES_DB: state_service localstack: image: docker.io/localstack/localstack:latest diff --git a/docker/localstack/events.sh b/docker/localstack/events.sh old mode 100644 new mode 100755 diff --git a/docker/localstack/firehose.sh b/docker/localstack/firehose.sh old mode 100644 new mode 100755