File tree Expand file tree Collapse file tree 6 files changed +47
-11
lines changed Expand file tree Collapse file tree 6 files changed +47
-11
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
1
+ nc_py_api [app ]
2
+ pygifsicle
3
+ imageio
4
+ opencv-python
5
+ numpy
File renamed without changes.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments