├── .do └── deploy.template.yaml ├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── documentation.yaml │ └── feature.yaml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── index.html ├── netlify.toml ├── package.json ├── postcss.config.js ├── public └── favicon.ico ├── src ├── App.vue ├── api │ └── index.js ├── assets │ ├── appwrite.svg │ ├── delete.svg │ ├── github.svg │ ├── logo.png │ ├── twitter.svg │ └── vue.svg ├── components │ ├── Alert.vue │ ├── Landing.vue │ ├── Login.vue │ ├── SignUp.vue │ ├── Todo.vue │ └── TodoItem.vue ├── index.css ├── main.js ├── router │ └── index.js ├── store │ ├── index.js │ └── modules │ │ ├── account.js │ │ └── todos.js └── utils │ └── config.js ├── tailwind.config.js └── vite.config.js /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/.github/ISSUE_TEMPLATE/documentation.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run serve -- --port $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/app.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/appwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/assets/appwrite.svg -------------------------------------------------------------------------------- /src/assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/assets/delete.svg -------------------------------------------------------------------------------- /src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/assets/github.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/assets/twitter.svg -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/components/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/components/Alert.vue -------------------------------------------------------------------------------- /src/components/Landing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/components/Landing.vue -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/components/Login.vue -------------------------------------------------------------------------------- /src/components/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/components/SignUp.vue -------------------------------------------------------------------------------- /src/components/Todo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/components/Todo.vue -------------------------------------------------------------------------------- /src/components/TodoItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/components/TodoItem.vue -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/store/modules/account.js -------------------------------------------------------------------------------- /src/store/modules/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/store/modules/todos.js -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/demo-todo-with-vue/HEAD/vite.config.js --------------------------------------------------------------------------------