-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd84deb
commit 6e07133
Showing
4 changed files
with
132 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Setting up PostgreSQL | ||
|
||
## OS X | ||
|
||
### Option 1 - Postgres.app | ||
|
||
Download and run [Postgres.app](https://postgresapp.com/) -- a free-standing database server that's super easy to install and start. Grab [pgAdmin](https://www.pgadmin.org/download/pgadmin-4-macos/) and install it. | ||
|
||
### Option 2 - Homebrew | ||
|
||
1. First, make sure you have homebrew installed | ||
2. Run `brew doctor` and address anything homebrew wants you to fix | ||
3. Run `brew install postgresql` | ||
4. Grab [pgAdmin](https://www.pgadmin.org/download/pgadmin-4-macos/) and install it. | ||
|
||
## Windows | ||
|
||
1. Grab the [the appropriate windows installer](https://www.postgresql.org/download/windows/) and run it. | ||
2. Put the DLLs in your `C:\WINDOWS\system32` folder | ||
|
||
## Linux | ||
|
||
Use `apt-get` or equivalent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Setting up SQLite | ||
|
||
## OS X | ||
|
||
The easiest way to install SQLite on OS X is to use [homebrew](https://brew.sh/). | ||
|
||
1. First, make sure you have homebrew installed | ||
2. Run `brew doctor` and address anything homebrew wants you to fix | ||
3. Run `brew install sqlite` | ||
|
||
## Windows | ||
|
||
1. Grab the [precompiled windows DLLs from the SQLite website](https://www.sqlite.org/download.html#win32). Make sure to also get the _sqlite-tools_ package so you have a CLI that can run in `cmd.exe` | ||
2. Put the DLLs in your `C:\WINDOWS\system32` folder | ||
|
||
## Linux | ||
|
||
Please run | ||
|
||
`sudo apt-get install sqlite3 libsqlite3-dev` | ||
|
||
or the equivalent on your operating system |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters