summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-11-20 12:54:30 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-11-20 12:54:30 +0100
commit8d156e4e067e4917c56b168b7ae5d49170862bc0 (patch)
tree3abda5674ecb4c078578847dd6454d13c7140b11
parentcfcb7de6ca4341be7f01ee814fbcec02593d5212 (diff)
downloadsurvey-8d156e4e067e4917c56b168b7ae5d49170862bc0.tar.gz
survey-8d156e4e067e4917c56b168b7ae5d49170862bc0.tar.bz2
survey-8d156e4e067e4917c56b168b7ae5d49170862bc0.zip
boilerplate
-rw-r--r--.gitignore12
-rw-r--r--talersurvey/survey/__init__.py2
2 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ec49a17
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,12 @@
+*.pyc
+*.swp
+Makefile
+__pycache__/
+aclocal.m4
+autom4te.cache/
+config.log
+config.status
+configure
+frontend-survey.wsgi
+taler-merchant-survey
+*.egg-info
diff --git a/talersurvey/survey/__init__.py b/talersurvey/survey/__init__.py
new file mode 100644
index 0000000..406f905
--- /dev/null
+++ b/talersurvey/survey/__init__.py
@@ -0,0 +1,2 @@
+from talersurvey.survey.survey import app
+__all__ = ["app"]