2 # -*- coding: utf-8 -*-
3 """Start script for the MonitorWeb TurboGears project.
5 This script is only needed during development for running from the project
6 directory. When the project is installed, easy_install will create a
11 from monitorweb.commands import start, ConfigurationError
13 if __name__ == "__main__":
16 except ConfigurationError, exc:
17 sys.stderr.write(str(exc))