├── .gitignore ├── .npmignore ├── LICENSE ├── README.MD ├── bin └── easygraphql-now.js ├── commands └── createProject.js ├── gif ├── 1.gif ├── 2.gif └── 3.gif ├── logo.png ├── package.json ├── scripts ├── createPackage.sh ├── deployNow.sh └── installNow.sh ├── services ├── addSchema.js ├── createPackage.js ├── createStarterFiles.js ├── deployNow.js ├── installNow.js └── runLocal.js └── templates ├── starterFileGitignore.txt └── starterFileIndex.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/README.MD -------------------------------------------------------------------------------- /bin/easygraphql-now.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/bin/easygraphql-now.js -------------------------------------------------------------------------------- /commands/createProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/commands/createProject.js -------------------------------------------------------------------------------- /gif/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/gif/1.gif -------------------------------------------------------------------------------- /gif/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/gif/2.gif -------------------------------------------------------------------------------- /gif/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/gif/3.gif -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/package.json -------------------------------------------------------------------------------- /scripts/createPackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/scripts/createPackage.sh -------------------------------------------------------------------------------- /scripts/deployNow.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | now --public -------------------------------------------------------------------------------- /scripts/installNow.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npm install now -D -------------------------------------------------------------------------------- /services/addSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/services/addSchema.js -------------------------------------------------------------------------------- /services/createPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/services/createPackage.js -------------------------------------------------------------------------------- /services/createStarterFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/services/createStarterFiles.js -------------------------------------------------------------------------------- /services/deployNow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/services/deployNow.js -------------------------------------------------------------------------------- /services/installNow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/services/installNow.js -------------------------------------------------------------------------------- /services/runLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/services/runLocal.js -------------------------------------------------------------------------------- /templates/starterFileGitignore.txt: -------------------------------------------------------------------------------- 1 | # dependencies 2 | /node_modules/ 3 | 4 | # misc 5 | /variables.env -------------------------------------------------------------------------------- /templates/starterFileIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGraphQL/easygraphql-now/HEAD/templates/starterFileIndex.txt --------------------------------------------------------------------------------