mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	* fix group page * setup group notification for backend * update type generators * script to auto-generate schema exports * setup frontend CRUD interface * remove old notifications UI * drop old events api * add test functionality * update naming for fields * add event dispatcher functionality * bump to python 3.10 * bump python version * purge old event code * use-async apprise * set mealie logo as image * unify styles for buttons rows * add links to banners
		
			
				
	
	
		
			26 lines
		
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from pathlib import Path
 | 
						|
 | 
						|
CWD = Path(__file__).parent
 | 
						|
PROJECT_DIR = Path(__file__).parent.parent.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"
 |