added general section

This commit is contained in:
Jan Halfar 2021-12-02 11:26:59 +01:00
parent 428eb8b8bf
commit dc1c2cf63d
8 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# Bookmarks
- https://k8s.af/

View File

@ -6,6 +6,33 @@ sidebar_position: 2
How to setup your machine for frontend development
## general topics
## setting up your IDE
- vscode
-
# frontend specific
- yarn / npm / package.json
- nvm
- browser extensions
- preact
- redux
- (google analytics)
## debugging with emulators / devices
- xcode
- android studio
## Install software
### Mac
@ -21,6 +48,7 @@ brew cask install iterm2
### Windows
Install Linux ;)

10
foomo/docs/general/git.md Normal file
View File

@ -0,0 +1,10 @@
---
id: git
sidebar_label: GIT
sidebar_position: 4
---
# git
Git is well documented, here, here and here.
...

View File

@ -0,0 +1,25 @@
---
id: intro
sidebar_label: Intro
sidebar_position: 1
---
# General
- github
- 2fa
- 1password
- cli
- terminal
- iterm2
- git best practices
- package managers
- brew
- apk
- bash / zsh
- ssh config
- zsh
- z
- k9s
- markdown
- yaml
- security guidelines

View File

@ -0,0 +1,14 @@
---
id: package-managers
sidebar_label: Package managers
sidebar_position: 4
---
# Package managers
Whenever you can do not manage software on your computer manually ...
- comfort
- versions
- security
...

View File

@ -0,0 +1,26 @@
---
title: Setup
sidebar_position: 2
---
# Setup
How to setup your machine development
## Install software
### Mac
First of all install `brew` from https://brew.sh
```zsh
brew cask install iterm2
```
### Linux
### Windows
Install Linux ;)

View File

@ -59,6 +59,13 @@ const config = {
// src: 'img/logo.svg',
// },
items: [
{
type: 'doc',
docId: 'general/intro',
position: 'left',
label: 'General',
},
{
type: 'doc',
docId: 'frontend/intro',

View File

@ -14,6 +14,7 @@
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
generalSidebar: [{type: 'autogenerated', dirName: 'general'}],
backendSidebar: [{type: 'autogenerated', dirName: 'backend'}],
frontendSidebar: [{type: 'autogenerated', dirName: 'frontend'}],
devopsSidebar: [{type: 'autogenerated', dirName: 'devops'}],