# app-tutorial **Repository Path**: cloudpai/app-tutorial ## Basic Information - **Project Name**: app-tutorial - **Description**: Tutorial app which is built in the tutorial - **Primary Language**: Unknown - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Nextcloud App Tutorial [![PHPUnit GitHub Action](https://github.com/nextcloud/app-tutorial/workflows/PHPUnit/badge.svg)](https://github.com/nextcloud/app-tutorial/actions?query=workflow%3APHPUnit) [![Node GitHub Action](https://github.com/nextcloud/app-tutorial/workflows/Node/badge.svg)](https://github.com/nextcloud/app-tutorial/actions?query=workflow%3ANode) [![Lint GitHub Action](https://github.com/nextcloud/app-tutorial/workflows/Lint/badge.svg)](https://github.com/nextcloud/app-tutorial/actions?query=workflow%3ALint) This is the [tutorial app](https://docs.nextcloud.com/server/latest/developer_manual/app/tutorial.html) which shows how to develop a very simple notes app. ## Try it To install it change into your Nextcloud's apps directory: cd nextcloud/apps Then run: git clone https://github.com/nextcloud/app-tutorial.git notestutorial Then install the dependencies using: make composer ## Frontend development The app tutorial also shows the very basic implementation of an app frontend using [Vue.js](https://vuejs.org/). To build the frontend code after doing changes to its source in `src/` requires to have Node and npm installed. - 👩‍💻 Run `make dev-setup` to install the frontend dependencies - 🏗 To build the Javascript whenever you make changes, run `make build-js` To continuously run the build when editing source files you can make use of the `make watch-js` command.