mirror of
https://github.com/foomo/foomo-docs.git
synced 2025-10-16 12:35:40 +00:00
added general section
This commit is contained in:
parent
428eb8b8bf
commit
dc1c2cf63d
3
foomo/docs/devops/bookmarks.md
Normal file
3
foomo/docs/devops/bookmarks.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Bookmarks
|
||||
|
||||
- https://k8s.af/
|
||||
@ -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
10
foomo/docs/general/git.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
id: git
|
||||
sidebar_label: GIT
|
||||
sidebar_position: 4
|
||||
---
|
||||
# git
|
||||
|
||||
Git is well documented, here, here and here.
|
||||
|
||||
...
|
||||
25
foomo/docs/general/intro.md
Normal file
25
foomo/docs/general/intro.md
Normal 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
|
||||
14
foomo/docs/general/package-managers.md
Normal file
14
foomo/docs/general/package-managers.md
Normal 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
|
||||
|
||||
...
|
||||
26
foomo/docs/general/setup.md
Normal file
26
foomo/docs/general/setup.md
Normal 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 ;)
|
||||
@ -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',
|
||||
|
||||
@ -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'}],
|
||||
|
||||
Loading…
Reference in New Issue
Block a user