mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	* feat: ✨ * fix colors * add additional support for settings meal tag * add defaults to recipe * use group reciep settings * fix login infinite loading * disable owner on initial load * add skeleton loader * add v-model support * formatting * fix overwriting existing values * feat(frontend): ✨ add markdown preview for steps * update black plus formatting * update help text * fix overwrite error * remove print Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			25 lines
		
	
	
		
			532 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			532 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from pathlib import Path
 | |
| 
 | |
| CWD = Path(__file__).parent
 | |
| 
 | |
| 
 | |
| class Directories:
 | |
|     out_dir = CWD / "generated"
 | |
| 
 | |
| 
 | |
| class CodeTemplates:
 | |
|     interface = CWD / "templates" / "interface.js"
 | |
|     pytest_routes = CWD / "templates" / "test_routes.py.j2"
 | |
| 
 | |
| 
 | |
| class CodeDest:
 | |
|     interface = CWD / "generated" / "interface.js"
 | |
|     pytest_routes = CWD / "generated" / "test_routes.py"
 | |
| 
 | |
| 
 | |
| class CodeKeys:
 | |
|     """Hard coded comment IDs that are used to generate code"""
 | |
| 
 | |
|     nuxt_local_messages = "MESSAGE_LOCALES"
 | |
|     nuxt_local_dates = "DATE_LOCALES"
 |