Browse Source

Caching added + Some server make rules

master
Dirk Alders 4 years ago
parent
commit
45a64a7a20
3 changed files with 14 additions and 0 deletions
  1. 3
    0
      .gitmodules
  2. 10
    0
      Makefile
  3. 1
    0
      caching

+ 3
- 0
.gitmodules View File

13
 [submodule "task"]
13
 [submodule "task"]
14
 	path = task
14
 	path = task
15
 	url = https://git.mount-mockery.de/pylib/task
15
 	url = https://git.mount-mockery.de/pylib/task
16
+[submodule "caching"]
17
+	path = caching
18
+	url = https://git.mount-mockery.de/pylib/caching

+ 10
- 0
Makefile View File

50
 		make -C $@/_examples_ all; \
50
 		make -C $@/_examples_ all; \
51
 	fi
51
 	fi
52
 	@echo "   $@.rst" >> index.rst; \
52
 	@echo "   $@.rst" >> index.rst; \
53
+
54
+update:
55
+	git pull
56
+	git submodule init
57
+	git submodule foreach git checkout master
58
+	git submodule foreach git pull
59
+
60
+copy:
61
+	rsync -av --delete _build/html/ /data/webroot/pylib_docs/
62
+	chown www-data.www-data -R /data/webroot/pylib_docs/

+ 1
- 0
caching

1
+Subproject commit 01cf327609fcac0dbddbad4168ae154cf625bbee

Loading…
Cancel
Save