├── .devcontainer-template ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .github └── dependabot.yml ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── postgresql-ecosystem-thumbnail.png ├── postgresql-ecosystem.code-workspace ├── postgresql-ecosystem.drawio ├── postgresql-ecosystem.drawio.png ├── postgresql-ecosystem.html ├── postgresql-ecosystem.pdf ├── postgresql-ecosystem.png ├── presentations ├── pg-ecosystem-scenario1-enterprisedb.png ├── pg-ecosystem-scenario2-appstack.png └── postgresql-ecosystem-CHI_PUG-20191016.pptx └── sample-map-living-beings.drawio /.devcontainer-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.devcontainer-template/Dockerfile -------------------------------------------------------------------------------- /.devcontainer-template/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.devcontainer-template/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer-template/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.devcontainer-template/docker-compose.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | code.efficiencygeek.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/_config.yml -------------------------------------------------------------------------------- /postgresql-ecosystem-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem-thumbnail.png -------------------------------------------------------------------------------- /postgresql-ecosystem.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem.code-workspace -------------------------------------------------------------------------------- /postgresql-ecosystem.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem.drawio -------------------------------------------------------------------------------- /postgresql-ecosystem.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem.drawio.png -------------------------------------------------------------------------------- /postgresql-ecosystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem.html -------------------------------------------------------------------------------- /postgresql-ecosystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem.pdf -------------------------------------------------------------------------------- /postgresql-ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/postgresql-ecosystem.png -------------------------------------------------------------------------------- /presentations/pg-ecosystem-scenario1-enterprisedb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/presentations/pg-ecosystem-scenario1-enterprisedb.png -------------------------------------------------------------------------------- /presentations/pg-ecosystem-scenario2-appstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/presentations/pg-ecosystem-scenario2-appstack.png -------------------------------------------------------------------------------- /presentations/postgresql-ecosystem-CHI_PUG-20191016.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/presentations/postgresql-ecosystem-CHI_PUG-20191016.pptx -------------------------------------------------------------------------------- /sample-map-living-beings.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EfficiencyGeek/postgresql-ecosystem/HEAD/sample-map-living-beings.drawio --------------------------------------------------------------------------------