Make IPyPBX work with SQL tables created by django models
[ipypbx] / projects / sample / manage.py
1 #!/usr/bin/python
2 # Copyright (c) Stas Shtin, 2010
3
4 # This file is part of IPyPBX.
5
6 # IPyPBX is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # IPyPBX is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with IPyPBX.  If not, see <http://www.gnu.org/licenses/>.
18
19 from django.core.management import execute_manager
20 try:
21     import settings # Assumed to be in the same directory.
22 except ImportError:
23     import sys
24     sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
25     sys.exit(1)
26
27 if __name__ == "__main__":
28     execute_manager(settings)