This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
| """Gunicorn config file. | |
| by HacKan (https://hackan.net) | |
| Find it at: https://gist.github.com/HacKanCuBa/275bfca09d614ee9370727f5f40dab9e | |
| Based on: https://gist.github.com/KodeKracker/6bc6a3a35dcfbc36e2b7 | |
| Changelog | |
| ========= | |
| See revisions to access other versions of this file. |
| version: '3.1' | |
| services : | |
| db: | |
| image: postgres:10-alpine | |
| ports: | |
| - "5432:5432" | |
| environment: | |
| POSTGRES_USER: user1 | |
| POSTGRES_PASSWORD: changeme | |
| POSTGRES_DB: tododb |