Go to file
Ben f4bf5cb042
Switch to vue.js tutorial app
from https://github.com/nextcloud/app-tutorial
2021-08-21 16:17:14 +02:00
.github Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
appinfo Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
css Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
img Add UPschooling nextcloud app template 2021-08-21 12:58:00 +02:00
js Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
lib Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
src Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
templates Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
tests Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
.eslintrc.js Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
.gitattributes Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
.gitignore Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
.php_cs.dist Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
CHANGELOG.md Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
COPYING Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
Makefile Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
README.md Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
babel.config.js Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
composer.json Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
composer.lock Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
docker-run.sh changed dependency version of nextcloud 2021-08-21 15:21:32 +02:00
package-lock.json Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
package.json Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
phpunit.integration.xml Add UPschooling nextcloud app template 2021-08-21 12:58:00 +02:00
phpunit.xml Add UPschooling nextcloud app template 2021-08-21 12:58:00 +02:00
podman-reown.sh podman: Add auto-installation 2021-08-21 15:20:15 +02:00
podman-run.sh podman: Add auto-installation 2021-08-21 15:20:15 +02:00
stylelint.config.js Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00
webpack.js Switch to vue.js tutorial app 2021-08-21 16:17:14 +02:00

README.md

UPschooling

Place this app in nextcloud/apps/

PHPUnit GitHub Action Node GitHub Action Lint GitHub Action

This is the tutorial app which shows how to develop a very simple notes app.

Installing dependencies

make composer

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.