Run commands in all svn-based projects.
- Create python3 environment
cd /opt/oriole-bot/
python -mvenv venv
source venv/bin/activate
make
- Edit cfg.py
For svn://xxxxxx/user/trunk/, edit as follows:
config = {
'svn': 'svn://xxxxxxx/%s/trunk/',
'user': 'xxx',
'pass': 'xxx',
'poll': 5,
'cmds': ['pytest'],
'srcs': [
"user",
],
'web': "http://localhost:8000/",
}
- start
make start
- stop
make stop
- clean
make clean
- web
http://localhost:8000