Skip to content

Commit 83df69a

Browse files
committed
v1.0.0 (2)
1 parent 260aac6 commit 83df69a

File tree

4 files changed

+56
-2
lines changed

4 files changed

+56
-2
lines changed

.nextcloudignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.git
2+
.github
3+
.gitignore
4+
.tx
5+
.vscode
6+
.php-cs-fixer.*
7+
/.codecov.yml
8+
/.eslintrc.js
9+
/.gitattributes
10+
/.gitignore
11+
/.l10nignore
12+
/.nextcloudignore
13+
/.travis.yml
14+
/.pre-commit-config.yaml
15+
/.run
16+
/babel.config.js
17+
/build
18+
/APPS.md
19+
/AUTHORS.md
20+
/CHANGELOG.md
21+
/HOW_TO_INSTALL.md
22+
/README.md
23+
/composer.*
24+
/node_modules
25+
/screenshots
26+
/examples
27+
/docs
28+
/src
29+
/vendor/bin
30+
/jest.config.js
31+
/Makefile
32+
/krankerl.toml
33+
/package-lock.json
34+
/package.json
35+
/postcss.config.js
36+
/psalm.xml
37+
/pyproject.toml
38+
/renovate.json
39+
/stylelint.config.js
40+
/webpack.*
41+
/requirements.txt
42+
/Dockerfile
43+
/results
44+
tests

HOW_TO_INSTALL.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
How To Install
2+
==============
3+
4+
1. Install **AppAPI** from [Appstore](https://apps.nextcloud.com/apps/app_api).
5+
2. Create a deployment daemon following the [instructions](https://cloud-py-api.github.io/app_api/CreationOfDeployDaemon.html) provided by AppAPI. _(If you are using AIO, it will be created automatically)_
6+
3. Navigate to the `External Apps` menu from your Nextcloud instance, find this example, and click the `Install` button.
7+
4. Enable this bot in conversation settings.
8+
5. Type in conversation: **@assistant I have a question for you**

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Refer to [How to install](https://github.com/cloud-py-api/upscaler_example/blob/
2626
<dependencies>
2727
<nextcloud min-version="27" max-version="28"/>
2828
</dependencies>
29-
<ex-app>
29+
<external-app>
3030
<docker-install>
3131
<registry>ghcr.io</registry>
3232
<image>cloud-py-api/upscaler_example</image>
@@ -42,5 +42,5 @@ Refer to [How to install](https://github.com/cloud-py-api/upscaler_example/blob/
4242
</scopes>
4343
<protocol>http</protocol>
4444
<system>false</system>
45-
</ex-app>
45+
</external-app>
4646
</info>

krankerl.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[package]
2+
before_cmds = []

0 commit comments

Comments
 (0)