easy absolute path for settings.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import os
#ROOT : the django proyect root
ROOT = lambda base : os.path.join(os.path.dirname(__file__), base).replace('\\','/')

#usage examples

DATABASE_NAME = ROOT('data/mydb.db')

TEMPLATE_DIRS = (
    ROOT('templates'),
)

#...

Comments

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.