mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 10:43:40 -05:00 
			
		
		
		
	* feat(frontend): 💄 add recipe title * fix(frontend): 🐛 fixes #722 side-bar issue * feat(frontend): ✨ Add page titles to all pages * minor cleanup * refactor(backend): ♻️ rewrite scheduler to be more modulare and work * feat(frontend): ✨ start password reset functionality * refactor(backend): ♻️ refactor application settings to facilitate dependency injection * refactor(backend): 🔥 remove RECIPE_SETTINGS env variables in favor of group settings * formatting * refactor(backend): ♻️ align naming convention * feat(backend): ✨ password reset * test(backend): ✅ password reset * feat(frontend): ✨ self-service password reset * purge password schedule * update user creation for tests Co-authored-by: Hayden <hay-kot@pm.me>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import json
 | 
						|
 | 
						|
from mealie.app import app
 | 
						|
from mealie.core.config import determine_data_dir
 | 
						|
 | 
						|
DATA_DIR = determine_data_dir()
 | 
						|
 | 
						|
"""Script to export the ReDoc documentation page into a standalone HTML file."""
 | 
						|
 | 
						|
HTML_TEMPLATE = """<!-- Custom HTML site displayed as the Home chapter -->
 | 
						|
{% extends "main.html" %}
 | 
						|
{% block tabs %}
 | 
						|
{{ super() }}
 | 
						|
 | 
						|
<style>
 | 
						|
    body {
 | 
						|
        margin: 0;
 | 
						|
        padding: 0;
 | 
						|
    }
 | 
						|
</style>
 | 
						|
 | 
						|
 | 
						|
<div id="redoc-container"></div>
 | 
						|
<script src="https://cdn.jsdelivr.net/npm/redoc/bundles/redoc.standalone.js"> </script>
 | 
						|
<script>
 | 
						|
    var spec = MY_SPECIFIC_TEXT;
 | 
						|
    Redoc.init(spec, {}, document.getElementById("redoc-container"));
 | 
						|
</script>
 | 
						|
 | 
						|
 | 
						|
{% endblock %}
 | 
						|
{% block content %}{% endblock %}
 | 
						|
{% block footer %}{% endblock %}
 | 
						|
"""
 | 
						|
 | 
						|
HTML_PATH = DATA_DIR.parent.parent.joinpath("docs/docs/overrides/api.html")
 | 
						|
 | 
						|
 | 
						|
def generate_api_docs(my_app):
 | 
						|
    with open(HTML_PATH, "w") as fd:
 | 
						|
        text = HTML_TEMPLATE.replace("MY_SPECIFIC_TEXT", json.dumps(my_app.openapi()))
 | 
						|
        fd.write(text)
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    generate_api_docs(app)
 |