Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/colthreepv/chinchilla

A simple Golang service that takes pictures from dropbox and puts them on facebook.
https://github.com/colthreepv/chinchilla

Last synced: 25 days ago
JSON representation

A simple Golang service that takes pictures from dropbox and puts them on facebook.

Awesome Lists containing this project

README

        

# chinchilla
A simple Go service that takes pictures from dropbox and puts them on facebook.

## Example config.toml (REQUIRED)
Chinchilla requires yourself to register a dropbox app (more details later), and a facebook app.
The service is tought to be backed by a mongoDB server, so also a mongoDB instance is **required**.

```toml
[dropbox]
key = "YOUR APP KEY HERE"
secret = "YOUR APP SECRET HERE"

[mongo]
addrs = ["127.0.0.1"]
database = "database-name"
```