Deploy hexo to ECS in combination with nginx + git
preface
Before working on this system, my Hexo blog system was deployed in Github's hosting (the blog is not very written, but the tossing system is good 🤪), The great advantage is that it is easy and convenient, and there is no additional charge. Buying a domain name costs money for domain name resolution, but the biggest pain point is th ...
Added by random1 on Thu, 06 Jan 2022 09:06:37 +0200
Use Argo CD for continuous deployment in K8S
WeChat official account: operation and development story
By jock
The word continuous deployment is no stranger to technicians. We often mix CI and CD together. Today we separate them.
What is ArgoCD
Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
Argo CD is a declarative GitOps tool based on Kubernetes.
Be ...
Added by epukinsk on Wed, 05 Jan 2022 11:56:58 +0200
Some problems about workspace, staging area, local warehouse and remote warehouse in git
principle
Refer to Ruan Yifeng's blog: List of common Git commands
Workspace: the code written directly and stored on the hard disk in the form of a file is actually saved in the workspace workspace;index/stage: git add will be stored in the stage/index temporary storage area;Repository: after git commit, it will be stored in the local rep ...
Added by CMC on Tue, 04 Jan 2022 22:41:59 +0200
Supplement 21.9.13-9.23 learning records
mavsdk(dronekit-python)
Mainly focus on the application of UAV, not flight control, etc
PX4 airsim(gazebo) qgroundcontrol verification = = self written control program
9.13-9.14
make px4_sitl gazebo
done
qgroundcontrol
rely on done
Download run done
Airsim
Build Airsim on ubuntu
git clone -b 4.25 git@github.com:EpicGames ...
Added by hossfly007 on Tue, 04 Jan 2022 15:59:11 +0200
git workflow and instructions
Understanding and use of Git
1. Basic concepts
1.1. What is git
Git, the full name of GIT, is a distributed version control system. Git is usually used in programming. Git supports distributed deployment and can effectively and high-speed handle version management from very small to very large projects. The biggest difference between d ...
Added by sun14php on Mon, 03 Jan 2022 03:11:50 +0200
Gogs Code Hosting System Installation Configuration Manual
1. Systematic overview
1. Description
Code hosting system is an indispensable tool in development. Code hosting system facilitates collaborative development, code permission control, code disaster preparedness, version management, problem tracking, project document management and other necessary tools for project management. Code hosting ...
Added by ikscovski on Sun, 02 Jan 2022 21:32:38 +0200
Application method and principle of git
command
#View configuration
git config -l
#View system configuration
git config --system --list
#View current user configuration
git config --global --list
#User ID
git config --global user.name "qqq" #name
git config --global user.email 2@qq.com #mailbox
# Create a Git code base in the current directory
$ git init
# Clone a project and ...
Added by John Canyon on Sun, 02 Jan 2022 08:03:47 +0200
[git] git internal principle
Git internal principle
1. Summary
As a software development engineer, we rarely fight alone in our daily work. It will certainly involve multiple people working together to complete a project. How can we give the code we develop to other developers? Via U SB flash drive? Or write it in word and send it to each other? This is obviously not ele ...
Added by Lirpa on Sat, 01 Jan 2022 13:49:08 +0200
git local installation and configuration & & integrate idea & & integrate github
The most detailed installation tutorial in history
The above tutorials are for extended learning. In fact, they can be installed completely by default; We explain the configuration process in detail
Configure git environment: git config --global
config: the parameter is used to configure the git environmentglobal: long command means to confi ...
Added by skyxmen on Fri, 31 Dec 2021 00:28:04 +0200
How to use gitee and githup? Here is a nanny level step full solution!
What is git?
Git is a free and open source distributed version control system (technology for managing multi person collaborative development projects)
What is a distributed version control system?
Users can view all the files uploaded to git locally [git clone / git pull can get the files on git] Users can submit locally even if they are ...
Added by hamzatki on Fri, 24 Dec 2021 03:01:03 +0200