Jay Miller
Jay Miller
Until diving into the code, I wasn't sure how to persist the cookiecutter sessions throughout multiple test cases. I've noticed larger packages that use this don't use cookies session which...
Cookiecutter by default puts all the contents in a site project folder. This is great for things like documentation but doesn't make sense when the webiste is the main focus...
Raises a `Warning` when you don't provide a title. This is to encourage setting a title and preventing files from being overwritten. # Type of Issue - [ ] :bug:...
SITE_TITLE is also needed for RSS if `RSSFeed` needs a check for it with an AttributeError being raised.
We need to do some simple validation around SITE_URL to make sure it exists in rendering.
I would also like to make a suggestion: why not have a step to make test test setup since it's repeated on lines 29 and 44 ? If it make...
Via @john0isaac via Discord > And can we please have a template for issues other than the bug report and security vulnerability... Like Feature-request or idea or any general template?...
### Summary Of Actions Render Engine allows for plugin inclusions for singular pages and collections. That said you currently have to pass the settings of the collection at the site...
Current Implementation uses the `__class__.__name__` attribute https://github.com/render-engine/render-engine/blob/9df89d0f412106ce7be8770245cdff61ea6f2510/src/render_engine/_base_object.py#L19-L25 If there is a `content_path` defined, would it be better to use the filename instead. This would solve a the issue of overwritting...
To make customizability and getting started easier for render-engine init, I propose we add the following parameters to `render-engine init` ```python def init( pages: Annotated[typing.List[str], typer.Option("--page", "-p", help="add a page...