Skip to content

Commit

Permalink
More documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gthole committed Jan 22, 2018
1 parent bb4ac8f commit 410de9a
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,28 @@ Start up the web server and worker with
$ docker-compose up
```

If you're running a Mac you can go to [http://gedgo.local](http://gedgo.local). Otherwise find out the local ip address of the gedgo docker machine and visit it. For example:
If you're running a Mac you can go to [http://gedgo.local](http://gedgo.local),
or just [localhost](http://localhost).

```bash
$ docker-machine ip gedgo
192.168.99.101
```
#### Overriding settings

Drop any settings overrides (like `SECRET_KEY` or `EMAIL_*` settings) in
`./settings_local.py` to have them auto-imported into your setup.

#### Using Dropbox Files
Dropbox generates previews for more types of files than are supported with the
base file system storage. Storing your gedcom images and documents there can
also make it easier to keep them in sync between your genealogy application and
the Gedgo server.

And you would go to [http://192.168.99.101](http://192.168.99.101).
To do this, get a Dropbox OAuth token, and add it to your local settings and
tell Gedgo to use the Dropbox storage:

```
DROPBOX_ACCESS_TOKEN = '<your-access-token>
GEDGO_GEDCOM_FILE_STORAGE = 'gedgo.storages.DropBoxSearchableStorage'
GEDGO_GEDCOM_FILE_ROOT = '<dropbox path to your genealogy files>'
```

#### Updating Gedcoms
To update your gedcom, you can either use the manage.py command, passing it
Expand Down

0 comments on commit 410de9a

Please sign in to comment.