-
John Chilton authored
Sources virtualenv in .venv if available, creates server.ini if needed, and calls out to paster.
John Chilton authoredSources virtualenv in .venv if available, creates server.ini if needed, and calls out to paster.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
run.bat 213 B
@ECHO OFF
IF EXIST .venv (
call .venv\Scripts\activate
)
IF NOT EXIST server.ini (
rem Copying new settings file from template.
echo f | xcopy server.ini.sample server.ini
)
paster serve server.ini %*