This is the repo for the web dev of the Cloud Native Security Map (cncf#348).
Run the development server:
npm run dev
# or
yarn devProduction 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 = () =>
export default CoolComponent; ```
This is a Next.js project bootstrapped with create-next-app.