projets
/
ifgu.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
boostrap 1
[ifgu.git]
/
project
/
production.py
Commit
Line
Data
7751bc47
OL
1
# -*- encoding: utf-8 -*-
2
3
# En production, rediriger la sortie terminal on disponible en WSGI
4
# vers la sortie fichier errorlog.
5
import sys
6
sys.stdout = sys.stderr
7
8
from project.settings import *
9