Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# Imports 

2 

3from django.conf import settings 

4import os 

5 

6# Exports 

7 

8__all__ = ( 

9 "RELEASE_PATH", 

10 "VERSION_PATH", 

11) 

12 

13# Constants 

14 

15RELEASE_PATH = getattr(settings, "SUPERDJANGO_RELEASE_PATH", os.path.join(settings.BASE_DIR, "../deploy", "releases")) 

16"""The path to the releases directory is where individual release directories are stored.""" 

17 

18VERSION_PATH = os.path.join(settings.BASE_DIR, "../VERSION.txt") 

19"""The path to the version file."""