Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.