Spaces:
Running
Running
import os | |
from components.legacy.Docs import Docs | |
def resolve(relative_path: str): | |
return os.path.join(os.path.dirname(__file__), relative_path) | |
docs = Docs( | |
__file__, | |
markdown_files=([ | |
filename for filename in os.listdir(resolve('.')) | |
if filename.endswith(".md") | |
]), | |
) | |
if __name__ == "__main__": | |
docs.render().queue().launch() | |