Updates readme and adds sample driverConfig.json

This commit is contained in:
Patrick McDonagh
2017-11-03 11:44:02 -05:00
parent a0c90dede9
commit e89078d17f
2 changed files with 13 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ The driver configurator contains utility functions for manipulating the driver c
ALWAYS BEGIN BY VERIFYING THE CORRECT CONTENTS OF THE driverConfig.json FILE. ALWAYS BEGIN BY VERIFYING THE CORRECT CONTENTS OF THE driverConfig.json FILE.
```bash ```bash
Usage: driver_setup.py [OPTIONS] COMMAND [ARGS]... Usage: pocloud_driver_setup [OPTIONS] COMMAND [ARGS]...
Options: Options:
--help Show this message and exit. --help Show this message and exit.
@@ -22,7 +22,7 @@ Commands:
### Prepare Function ### Prepare Function
```bash ```bash
Usage: driver_setup.py prepare [OPTIONS] Usage: pocloud_driver_setup prepare [OPTIONS]
Perform the configuration of the driver. Perform the configuration of the driver.
@@ -35,7 +35,7 @@ Options:
### Upload Function ### Upload Function
```bash ```bash
Usage: driver_setup.py upload [OPTIONS] Usage: pocloud_driver_setup upload [OPTIONS]
Upload the file to AWS S3 bucket. Upload the file to AWS S3 bucket.

10
driverConfig.json Normal file
View File

@@ -0,0 +1,10 @@
{
"name": "name",
"driverFilename": "driver.py",
"driverId": "0000",
"additionalDriverFiles": [
"additional.py"
],
"version": 1,
"s3BucketName": "bucket"
}