diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fd5502b --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2009 Patrick Altman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/AUTHORS b/docs/AUTHORS new file mode 100644 index 0000000..ba20776 --- /dev/null +++ b/docs/AUTHORS @@ -0,0 +1 @@ +Patrick Altman \ No newline at end of file diff --git a/nashvegas/__init__.py b/nashvegas/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/nashvegas/management/__init__.py b/nashvegas/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/nashvegas/management/commands/__init__.py b/nashvegas/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/nashvegas/management/commands/upgradedb.py b/nashvegas/management/commands/upgradedb.py new file mode 100644 index 0000000..638b569 --- /dev/null +++ b/nashvegas/management/commands/upgradedb.py @@ -0,0 +1,11 @@ +""" +Execute SQL Scripts / Upgrade Database +====================================== + +""" + +from django.core.management.base import BaseCommand, CommandError + +class Command(BaseCommand): + pass +