Skip to content

Commit 9cde076

Browse files
committed
v0.0.27 [publish]
1 parent d9ccd38 commit 9cde076

File tree

6 files changed

+47
-11
lines changed

6 files changed

+47
-11
lines changed
File renamed without changes.

examples/as_app/to_gif/Makefile

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.DEFAULT_GOAL := help
2+
3+
.PHONY: help
4+
help:
5+
@echo "Welcome to ToGif example. Please use \`make <target>\` where <target> is one of"
6+
@echo " docs make HTML docs"
7+
@echo " html make HTML docs"
8+
@echo " "
9+
@echo " Next commands are only for dev environment with nextcloud-docker-dev!"
10+
@echo " They should run from the host you are developing on(with activated venv) and not in the container with Nextcloud!"
11+
@echo " "
12+
@echo " register28 register nc_py_api for Nextcloud 28"
13+
@echo " register27 register nc_py_api for Nextcloud 27"
14+
@echo " register26 register nc_py_api for Nextcloud 26"
15+
@echo " "
16+
@echo " tests28 run nc_py_api tests for Nextcloud 28"
17+
@echo " tests27 run nc_py_api tests for Nextcloud 27"
18+
@echo " tests26 run nc_py_api tests for Nextcloud 26"
19+
20+
.PHONY: register28
21+
register28:
22+
/bin/sh scripts/dev_register.sh master-nextcloud-1 nextcloud.local
23+
24+
.PHONY: register27
25+
register27:
26+
/bin/sh scripts/dev_register.sh master-stable27-1 stable27.local
27+
28+
.PHONY: register26
29+
register26:
30+
/bin/sh scripts/dev_register.sh master-stable26-1 stable26.local
31+
32+
.PHONY: tests28
33+
tests28:
34+
NEXTCLOUD_URL=http://nextcloud.local python3 -m pytest
35+
36+
.PHONY: tests27
37+
tests27:
38+
NEXTCLOUD_URL=http://stable27.local python3 -m pytest
39+
40+
.PHONY: tests26
41+
tests26:
42+
NEXTCLOUD_URL=http://stable26.local python3 -m pytest
File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nc_py_api[app]
2+
pygifsicle
3+
imageio
4+
opencv-python
5+
numpy

examples/to_gif/requirements.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)