mirror of
https://github.com/micromdm/micromdm/
synced 2026-06-13 05:55:34 +08:00
The vanity Netlify function was depending on micromdm.io/v2/pkg/log for logging, creating an unnecessary circular dependency with the main repository. Replace it with stdlib log.Logger to break this dependency. Verified: ```shell $ cd website && go build ./netlify-functions/vanity/ ```
This is the repository for https://micromdm.io
The website is built with hugo. You're welcome to add to it.
Adding a new blog post
- Install hugo
- Fork this repo and create a new branch (
git checkout -b my_post) - Create a new blog post:
hugo new blog/my-post-title.md - Open content/blog/my-post-title.md in your text editor and write an awesome blog post. You can use Markdown syntax for formatting.
- Use
hugo serveormake serveto view and edit this repo. Your local copy of the website will be visible athttp://localhost:1313 - Commit your changes (
git commit -m 'added my-post-title') andgit pushyour branch. - Open a Pull Request.
Making changes to the site
The templates for the site are all located in the themes/micromdm folder. You can view your changes instantly by running
hugo serve or make serve and opening http://localhost:1313 in your browser.