-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67505fd
commit 909d1af
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Generate New Spreadsheet Layer | ||
|
||
This directory contains scripts and logic for manual as well as automated generation of new spreadsheet based layers. | ||
|
||
## Steps to manually generate layer | ||
|
||
1. Create `input.json` | ||
```sh | ||
cp sample.input.json | ||
``` | ||
|
||
2. Replace values in `input.json` with the data for new spreadsheet layer | ||
3. Execute `manualGenLayer.js` | ||
```sh | ||
node manualGenLayer.js | ||
``` | ||
4. Check if json files are modified inside `src/` | ||
5. Build the entire package | ||
```sh | ||
grunt build | ||
``` | ||
6. Modify example files and check if you can use the newly generated layer | ||
```sh | ||
npm start | ||
``` | ||
7. Commit Files and Create Pull Request | ||
|
||
|
||
## Automatically Generate Layer | ||
|
||
// To be added in follow up PR |