8d06d6a4af
ci: Update workflows |
||
---|---|---|
.github | ||
appinfo | ||
css | ||
img | ||
js | ||
lib | ||
src | ||
templates | ||
tests | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.php-cs-fixer.dist.php | ||
CHANGELOG.md | ||
COPYING | ||
Makefile | ||
README.md | ||
babel.config.js | ||
composer.json | ||
composer.lock | ||
package-lock.json | ||
package.json | ||
stylelint.config.js | ||
webpack.config.js |
README.md
Nextcloud App Tutorial
This is the tutorial app 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 clone this repository into a folder named notestutorial¹:
git clone https://github.com/nextcloud/app-tutorial.git notestutorial
Then install the dependencies using:
make composer
¹ It is important that the directory is named exactly like the app ID (see appinfo/info.xml
).
Frontend development
The app tutorial also shows the very basic implementation of an app frontend using Vue.js. 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.