This repository has been archived by the owner on Jun 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from maccoda/maccoda/documentation
Some more documentation.
- Loading branch information
Showing
2 changed files
with
22 additions
and
2 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
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,20 @@ | ||
# Diesel setup | ||
|
||
These were the tasks I needed to perform before I could get diesel_cli | ||
installed. | ||
|
||
## Ubunutu | ||
|
||
These are the packages referenced in the README that need to be installed for | ||
postgresql and sqlite 3: | ||
|
||
* `postgresql` | ||
* `postgresql-contrib` | ||
* `libpq-dev` (Not enough to just set up postgresql, need this for `libpq`) | ||
* `sqlite3` | ||
|
||
Then needed to set up postgresql using | ||
[this](https://help.ubuntu.com/community/PostgreSQL) tutorial. | ||
|
||
After this was able to install diesel_cli and then run the setup with the newly | ||
created credentials following the instructions in [README](README.md) |