Metadata-Version: 2.1
Name: fsdev
Version: 0.1.1
Summary: A super simple filesystem dev server
License: MIT
Author: Tristan Slater
Author-email: hello@trslater.ca
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: Jinja2 (>=3.0.3,<4.0.0)
Description-Content-Type: text/markdown

# fsdev

A super simple filesystem dev server.

## Usage

Absolutely zero configuration. Just type `fsdev` in the directory you want to serve. Static files go in `static` and templates go in `templates`. You can make templates *private* (hide from server) by prepending with an underscore (e.g., `_header.html`). This is great for partials.

## Known Issues

-   Import warning on serve

## Documentation

Documentation in Markdown. Configured to use pdoc documentation tool:

```
poetry run pdoc fsdev.py
```

