12345678910111213141516171819202122232425262728293031323334 |
- [buildout]
- extends = base.cfg
- develop = .
-
- eggs =
- searx
-
- parts +=
- pyscripts
- supervisor
- crontab_reboot
-
-
- [pyscripts]
- recipe = zc.recipe.egg:script
- eggs = ${buildout:eggs}
- interpreter = py
-
-
- [supervisor]
- recipe = collective.recipe.supervisor
- http-socket = unix
- user = searxer
- password = ohpleasedochangeme
- file = /tmp/supervisor.sock
- chmod = 0700
- programs =
- 50 searx ${buildout:bin-directory}/searx-run
-
-
- [crontab_reboot]
- recipe = z3c.recipe.usercrontab
- times = @reboot
- command = ${buildout:bin-directory}/supervisord
|