aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore10
-rw-r--r--babel.cfg3
2 files changed, 9 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index e0aaa490..62dbbec8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,19 +6,21 @@ syntax: glob
*~
*.db
+# Emacs
+eproject.cfg
+
# Temporary files (vim backups)
*.swp
-
# Log files:
*.log
# Vagrant:
.vagrant/
-*.cfg
-pyaggr3g470r/var/indexdir/
-
# Virtualenv
venv
build
+
+
+conf/conf.cfg
diff --git a/babel.cfg b/babel.cfg
new file mode 100644
index 00000000..0cc0baca
--- /dev/null
+++ b/babel.cfg
@@ -0,0 +1,3 @@
+[python: **.py]
+[jinja2: **/templates/**.html]
+extensions=jinja2.ext.autoescape,jinja2.ext.with_ \ No newline at end of file
bgstack15