Skip to content

Instantly share code, notes, and snippets.

@joshdholtz
Created July 12, 2012 17:20
Show Gist options
  • Select an option

  • Save joshdholtz/3099459 to your computer and use it in GitHub Desktop.

Select an option

Save joshdholtz/3099459 to your computer and use it in GitHub Desktop.
Postgres Database Setup
-- psql -f setup.sql -U username postgres
CREATE USER dbusername WITH PASSWORD 'password';
CREATE DATABASE dbname;
GRANT ALL PRIVILEGES ON DATABASE dbname to dbusername;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment