├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── documentation.yaml │ └── feature.yaml ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── package.json ├── resources ├── code.tar.gz ├── index.js └── nature.jpg └── src └── app.js /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/.github/ISSUE_TEMPLATE/documentation.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | **.DS_Store 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/package.json -------------------------------------------------------------------------------- /resources/code.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/resources/code.tar.gz -------------------------------------------------------------------------------- /resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/resources/index.js -------------------------------------------------------------------------------- /resources/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/resources/nature.jpg -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-node/HEAD/src/app.js --------------------------------------------------------------------------------