Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/colthreepv/chinchilla
- Owner: colthreepv
- License: mit
- Created: 2015-01-09T03:47:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-01T03:10:32.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T03:19:57.852Z (7 months ago)
- Language: Go
- Size: 289 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```