# dropyll

> Use Dropbox to edit your Jekyll website (with staging area)

Latest version **0.1.5** (published 2012-09-03) · 0 weekly downloads

## Install

```sh
npm install dropyll
pnpm add dropyll
yarn add dropyll
bun add dropyll
```

Provides the command `dropyll`.

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.5 |
| Published | 2012-09-03 |
| First published | 2012-03-06 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Christopher Brown |
| Maintainers | chbrown |

## Links

- npm: https://www.npmjs.com/package/dropyll
- Repository: http://github.com/chbrown/dropyll
- npm.io page: https://npm.io/package/dropyll

## Dependencies (3)

- [dbox](https://npm.io/package/dbox.md) *
- [optimist](https://npm.io/package/optimist.md) *
- [regex-router](https://npm.io/package/regex-router.md) *

## Recent versions

- 0.1.5 (latest) — 2012-09-03
- 0.1.4 — 2012-09-03
- 0.1.2 — 2012-03-09
- 0.1.1 — 2012-03-06

## README

# Directions

Run it:

	dropyll \
	  --port 8050 \
	  --tld blogginin1999.com \
	  --local /www/blog-dropyll \
	  --dropbox /blog-jekyll \
	  --appkey <your app key> \
	  --appsecret <your app secret> \
	  --oauthtoken <your dropbox account token> \
	  --oauthsecret <your dropbox account secret>

*All of those `<your whatever>` values will be un-quoted strings of hexadecimals.*

Setting up:

	chown u+a nodedude /www/
	# where nodedude is who runs dropyll above

Nginx config:

	server {
	  listen 80;
	  server_name test.blogginin1999.com;
	  index index.html;
	  location / {
	    root /www/blog-dropyll/_test;
	  }
	}

	server {
	  listen 80;
	  server_name *.blogginin1999.com;
	  index index.html;
	  location / {
	    root /www/blog-dropyll/_live;
	  }
	  location /dropyll {
	      proxy_pass http://127.0.0.1:8050;
	  }
	}

node-dropbox has a slightly nicer interface, but is broken

---
_Source: https://npm.io/package/dropyll · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
