GitHub
github.com › postgres › postgres
GitHub - postgres/postgres: Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch · GitHub
Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/...
Starred by 21.5K users
Forked by 5.8K users
Languages C 82.9% | PLpgSQL 7.7% | Perl 4.9% | Yacc 1.2% | Meson 0.7% | Makefile 0.6%
Videos
#Complete PostgreSQL Guide - Git repository for the ...
06:34
A Postgres database for every GitHub branch 🤝 GitHub branching ...
- YouTube
12:31
Extending GitHub Copilot to chat with your Postgres Database - YouTube
Building a RAG application with GitHub Models and Postgres ...
12:32
4 Solution Setup Postgres using Github Copilot cli - YouTube
GitHub
github.com › supabase-community › database-build
GitHub - supabase-community/database-build: In-browser Postgres sandbox with AI assistance (formerly postgres.new) · GitHub
In-browser Postgres sandbox with AI assistance (formerly postgres.new) - supabase-community/database-build
Starred by 3K users
Forked by 276 users
Languages TypeScript 87.5% | JavaScript 7.6% | CSS 3.6% | PLpgSQL 1.2% | Dockerfile 0.1%
GitHub
github.com › supabase-community › postgres-new › activity
Activity · supabase-community/database-build
In-browser Postgres sandbox with AI assistance (formerly postgres.new) - Activity · supabase-community/database-build
Author supabase-community
PostgreSQL
postgresql.org › docs › current › git.html
PostgreSQL: Documentation: 18: I.1. Getting the Source via Git
May 14, 2026 - git clone https://git.postgresql.org/git/postgresql.git · This will copy the full repository to your local machine, so it may take a while to complete, especially if you have a slow Internet connection. The files will be placed in a new subdirectory postgresql of your current directory.
Reddit
reddit.com › r/github › postgresql database in repository
r/github on Reddit: PostgreSQL database in repository
March 18, 2024 -
Hi, I’m a beginner at web development so I’m sorry for the dumb question but I recently made a project for a course I’m following that made use of a database I had created in PostgreSQL.
Now, I want to ask, if I want to upload this project on Github, how do I upload the database or the PostgreSQL content I used? What would be the right way of adding a project like that on my Github?
Top answer 1 of 5
29
Usually, you don't store databases in the source control, because each installation/environment of your app is supposed to have it's own data, different from the others. You can and should store SQL scripts to create the structure of your database, such as empty tables, indexes, tables relationships, etc... You can also store scripts that insert the initial data on a newly created database (seed data), such as a default user. If you still want to store the entire database, just find a tool to export it to any text file(s): SQL script, JSON, CSV
2 of 5
29
I'll answer the question instead of telling you not to. Despite what some people are saying here this is a legitimate use case. Many repos will include just the schema of their database instead of the schema and all of the database contents. The schema is used to initialize a local database for tests. Either way for postgres you will want to lookup a tool call pg_dump and pg_restore. These come with most installs of postgres. pg_dump can export all of your database to a SQL file that you can include in your repo like any other file. If you want to go just the schema route - pg_dump has a flag for only exporting the schema as a file. On the opposite.side, you will use pg_restore to load your database back into a postgres instance.
GitHub
github.com › postgres › postgres › releases
Releases · postgres/postgres
Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch - Releases · postgres/postgres
Author postgres
GitHub
github.com › vitabaks › autobase
GitHub - autobase-tech/autobase: Automated database platform for PostgreSQL® - Your own DBaaS.
Autobase is an Internal Database Platform for PostgreSQL, bringing the managed database experience of DBaaS into your own infrastructure.
Starred by 4.3K users
Forked by 596 users
Languages TypeScript 52.9% | Go 18.2% | Jinja 13.6% | PLpgSQL 6.2% | Python 3.8% | Shell 2.1%
GitHub
github.com › supabase › supabase
GitHub - supabase/supabase: The Postgres development platform. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications. · GitHub
1 week ago - Hosted Postgres Database. Docs · Authentication and Authorization. Docs · Auto-generated APIs. ... GraphQL. Docs · Realtime subscriptions. Docs ... Database Functions. Docs ... File Storage. Docs · AI + Vector/Embeddings Toolkit. Docs ... Watch "releases" of this repo to get notified of major updates. ... Community Forum. Best for: help with building, discussion about database best practices. GitHub Issues.
Starred by 106K users
Forked by 13.2K users
Languages TypeScript 71.0% | MDX 26.8% | JavaScript 0.8% | CSS 0.7% | Shell 0.4% | Vue 0.2%
PostgreSQL
postgresql.org
PostgreSQL: The world's most advanced open source database
In the spirit of the open source PostgreSQL community, we strongly encourage you to test the new features of PostgreSQL 19 on your systems to help us eliminate bugs and other issues.
GitHub
github.com › supabase › postgres-meta
GitHub - supabase/postgres-meta: A RESTful API for managing your Postgres. Fetch tables, add roles, and run queries · GitHub
A RESTful API for managing your Postgres. Fetch tables, add roles, and run queries - supabase/postgres-meta
Starred by 1.2K users
Forked by 204 users
Languages TypeScript 97.8% | PLpgSQL 2.0%
GitHub
docs.github.com › en › actions › using-containerized-services › creating-postgresql-service-containers
Creating PostgreSQL service containers - GitHub Docs
name: PostgreSQL service example on: push jobs: # Label of the container job container-job: # Containers must run in Linux based operating systems runs-on: ubuntu-latest # Docker Hub image that `container-job` executes in container: node:20-bookworm-slim # Service containers to run with `container-job` services: # Label used to access the service container postgres: # Docker Hub image image: postgres # Provide the password for postgres env: POSTGRES_PASSWORD: postgres # Set health checks to wait until postgres has started options: >- --health-cmd pg_isready --health-interval 10s --health-timeo
GitHub
gist.github.com › isaacarnault › 23be8dbe582af2cdaea7d2b4baa9f5e6
PostgreSQL integration & setting up: an effective way · GitHub
$ sudo su -l postgres $ psql postgres=# CREATE DATABASE github; # creates a database called github postgres=# \l # lists all databases on your PostgreSQL server - you have a postgres database by default ...
GitHub
github.com › npgsql › npgsql
GitHub - npgsql/npgsql: Npgsql is the .NET data provider for PostgreSQL. · GitHub
Npgsql is the .NET data provider for PostgreSQL. Contribute to npgsql/npgsql development by creating an account on GitHub.
Starred by 3.7K users
Forked by 889 users
Languages C#
GitHub
github.com › vapor › postgres-nio
GitHub - vapor/postgres-nio: 🐘 Non-blocking, event-driven Swift client for PostgreSQL.
Starred by 416 users
Forked by 97 users
Languages Swift 99.5% | Shell 0.5%
PostgreSQL Wiki
wiki.postgresql.org › wiki › Working_with_Git
Working with Git - PostgreSQL wiki
December 23, 2024 - See the git.postgresql.org site ... a patch via e-mail as part of officially Submitting a Patch. If you create a new branch, generally for a new feature test, you'll need to push it to git.postgresql.org....
GitHub
github.com › dhamaniasad › awesome-postgres
GitHub - dhamaniasad/awesome-postgres: A curated list of awesome PostgreSQL software, libraries, tools and resources, inspired by awesome-mysql · GitHub
pgRouting - pgRouting extends the PostGIS/PostgreSQL geospatial database to provide geospatial routing and other network analysis functionality. PGroonga - PGroonga provides a new index access method that uses Groonga allowing super fast full text search feature against all languages.
Starred by 12K users
Forked by 980 users
GitHub
github.com › jackc › pgx
GitHub - jackc/pgx: PostgreSQL driver and toolkit for Go · GitHub
3 weeks ago - PostgreSQL driver and toolkit for Go. Contribute to jackc/pgx development by creating an account on GitHub.
Starred by 14K users
Forked by 1.1K users
Languages Go 98.3% | HTML 1.1% | Shell 0.6% | C 0.0% | Dockerfile 0.0% | Ruby 0.0%