erica + the webapp support should work for you,
Add a app.webapp in your folder and do erica push from it , it should just
work.
A .webapp looks like:
```
{
"name": "My App",
"version" : "0.0.4",
"description": "My elevator pitch goes here",
"long_description" : "Something really important",
"launch_path": "/",
"url": "https://github.com/garden20/baseline-garden-app",
"categories": ["learning"],
"flattr_user_id" : "eckoit",
"icons": {
"16": "img/promo/icon_16.png",
"48": "img/promo/icon_48.png",
"96": "img/promo/icon_96.png",
"128": "img/promo/icon_128.png"
},
"promo_images": {
"small": "img/promo/promo_small.png"
},
"screenshots": [
"img/promo/screenshot1.png"
],
"developer": {
"name": "Ryan Ramage",
"url": "http://your-homepage-here.org"
},
"default_locale": "en"
}
```
See http://www.w3.org/2012/sysapps/manifest/ for a look on the format.
Hopefully i will make it easier soon.
- benoit
On Fri, Nov 8, 2013 at 10:51 AM, Hank Knight <[email protected]> wrote:
> From a Linux command line, I would like to be able to be able to
> automatically upload an entire website including all pages, images,
> CSS files and scripts from a given directory into CouchDB.
>
> Before I go to the trouble of developing such a tool I wanted to see
> if such a tool already exists.
>
> If not, are there any considerations I should be aware of when
> developing this tool? I would probably either use shell scripting or
> Perl.
>