Update screenshot URL
Increase version number to 0.0.5
Increase Nextcloud compatibility up to version 28
Place this app in nextcloud/apps/
The app can be built by using the provided Makefile by running:
make
This requires the following things to be present:
First get an account for the App Store then run:
make && make appstore
The archive is located in build/artifacts/appstore and can then be uploaded to the App Store.
You can use the provided Makefile to run all tests by using:
make test
Of course you can also install PHPUnit and use the configurations directly:
phpunit -c phpunit.xml
or:
phpunit -c phpunit.integration.xml
for integration tests
npm install
Configure your local Nextcloud URL in vue.config.js
:
const NEXTCLOUD_URL = 'http://localhost:8000/';
And then launch the Webpack dev server:
npm run serve
npm run lint