Skip to content

Instantly share code, notes, and snippets.

@huksley
Last active November 29, 2024 12:06
Show Gist options
  • Save huksley/f74e422424c03d8e37e5dc04a20f64eb to your computer and use it in GitHub Desktop.
Save huksley/f74e422424c03d8e37e5dc04a20f64eb to your computer and use it in GitHub Desktop.
Run minimal development postgres locally (MacOS)

Local postgres

It is so easy to run locally, and you don't need a docker for that!

Installing & running

brew install postgresql
git clone https://gist.github.com/huksley/f74e422424c03d8e37e5dc04a20f64eb pg
cd pg
npm run pg
{
"name": "pg",
"version": "0.0.1",
"description": "",
"scripts": {
"prepg": "if [ ! -d data/pg ]; then mkdir -p data/pg; initdb -D data/pg; fi",
"pg": "trap 'kill 0' SIGINT; postgres -D data/pg --config-file=pg.conf"
}
}
# Postgres minimal config
port = 5432
listen_addresses = 'localhost'
max_connections = 100
shared_buffers = 32MB
huge_pages = off
temp_buffers = 8MB
max_prepared_transactions = 0
work_mem = 512kB
maintenance_work_mem = 2MB
shared_memory_type = mmap
dynamic_shared_memory_type = posix
log_destination = 'stderr'
logging_collector = off
temp_file_limit = 1000
max_files_per_process = 256
wal_level = replica
fsync = on
synchronous_commit = on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment