Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jwarwick/info_parse
Parse directory information captured with info_gather
https://github.com/jwarwick/info_parse
Last synced: about 6 hours ago
JSON representation
Parse directory information captured with info_gather
- Host: GitHub
- URL: https://github.com/jwarwick/info_parse
- Owner: jwarwick
- Created: 2013-09-12T01:43:25.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-07T03:41:22.000Z (almost 11 years ago)
- Last Synced: 2023-04-13T20:27:16.899Z (over 1 year ago)
- Language: Elixir
- Size: 254 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InfoParse
Elixir project built with Dyanmo and Ecto. Used to display information captured with `info_gather`.
To create a backup of a heroku postgres database:
`heroku pgbackups:capture`To download the capture:
`curl -o latest.dump \`heroku pgbackups:url\``To import the capture into postgres:
`pg_restore --verbose --clean --no-acl --no-owner -d infogather latest.dump`## Postgres Setup
This application assumes you have a database `infogather` created which holds the tables defined in the
`info_gather` project.There is a mix helper defined to create the required tables. Run `mix db.create`.