This is the repo for the web dev of the Cloud Native Security Map (cncf/tag-security#348).
Run the development server:
npm run dev
# or
yarn dev
Production server:
run npm run build
to build and npm start
or start server statically with something like python -m SimpleHTTPServer
.
Content can be added as markdown-files. See content/
---
title: "Example-post"
date: "2020-10-01"
category: "Runtime"
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et massa cursus, lobortis felis eget, convallis mauris. Mauris condimentum vel odio ac vulputate. Pellentesque in vulputate dolor
To enable syntax highlighting, set the language after the backticks in a codeblock: ```jsx
import React from "react";
const CoolComponent = () =>
I'm a cool component!!
;
export default CoolComponent; ```
This is a Next.js project bootstrapped with create-next-app
.