Build with latest yesod. Also reorganise to conform more closely with yesod's standard scaffold layout to reduce upgrade effort.
		
			
				
	
	
		
			15 lines
		
	
	
		
			178 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			178 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
module Settings.Development where
 | 
						|
 | 
						|
import Prelude
 | 
						|
 | 
						|
development :: Bool
 | 
						|
development =
 | 
						|
#if DEVELOPMENT
 | 
						|
  True
 | 
						|
#else
 | 
						|
  False
 | 
						|
#endif
 | 
						|
 | 
						|
production :: Bool
 | 
						|
production = not development
 |