From 235f82544728d7630aacef543a7c77690ee527e1 Mon Sep 17 00:00:00 2001 From: Mason Payne Date: Thu, 11 Aug 2022 23:17:35 -0600 Subject: [PATCH] add initial config and readme --- README.md | 13 +++++++++++++ package.json | 21 +++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 README.md create mode 100644 package.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..e679492 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Appwrite Generated UI + +This app creates web components that will generate themselves based on the given Appwrite project. + +## Example Usage + +```javascript +// init the library with the Appwrite info +``` + +```html + +``` diff --git a/package.json b/package.json new file mode 100644 index 0000000..f75ac7e --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "appwrite-generated-ui", + "version": "1.0.0", + "description": "UI that generates itself based on the shape of a given Appwrite project.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "ssh://root@git.sa.vin:2222/payne8/appwrite-generated-ui.git" + }, + "keywords": [ + "generated", + "UI", + "appwrite", + "forms" + ], + "author": "Mason Payne ", + "license": "MIT" +}