Skip to content
Snippets Groups Projects
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 %*