Compare commits
2 Commits
3618328a0b
...
e018df63e0
| Author | SHA1 | Date | |
|---|---|---|---|
| e018df63e0 | |||
| 33b475a3a0 |
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
public
|
||||
resources
|
||||
.hugo_build.lock
|
||||
themes/*
|
||||
@@ -15,6 +15,8 @@ draft: false
|
||||
enableComment: true
|
||||
---
|
||||
|
||||
<!--more-->
|
||||
|
||||
## 恢復備份
|
||||
- `%userprofile%/.config`
|
||||
- `%userprofile%/.ssh`
|
||||
@@ -24,6 +26,7 @@ enableComment: true
|
||||
- `%userprofile%/.vimrc`
|
||||
|
||||
## 安裝 Chocolatey
|
||||
|
||||
先安裝 [Chocolatey](https://chocolatey.org/) ,根據 [https://chocolatey.org/install](https://chocolatey.org/install) ,用 Administrator 權限打開 Terminal ,輸入以下指令安裝:
|
||||
|
||||
```powershell
|
||||
@@ -31,7 +34,9 @@ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManage
|
||||
```
|
||||
|
||||
## 安裝需要的軟體
|
||||
|
||||
接著就可以安裝需要的工具了。
|
||||
|
||||
```shell
|
||||
choco install powertoys 7zip vscode hxd sublimetext4 androidstudio intellijidea-community git winmerge freefilesync freedownloadmanager gsudo firacode cascadiacode sourcecodepro delta googlechrome googledrive enpass.install sharex win32diskimager k-litecodecpackmega --yes
|
||||
```
|
||||
@@ -39,6 +44,7 @@ choco install powertoys 7zip vscode hxd sublimetext4 androidstudio intellijidea-
|
||||
可以在 [https://community.chocolatey.org/packages](https://community.chocolatey.org/packages) 找到其他工具,再加到清單後面即可。
|
||||
|
||||
上面的指令安裝了下列的軟體,可以依自己需求增刪:
|
||||
|
||||
- [powertoys](https://community.chocolatey.org/packages/powertoys)
|
||||
- [7zip](https://community.chocolatey.org/packages/7zip)
|
||||
- [vscode](https://community.chocolatey.org/packages/vscode)
|
||||
@@ -63,6 +69,7 @@ choco install powertoys 7zip vscode hxd sublimetext4 androidstudio intellijidea-
|
||||
- [k-litecodecpackmega](https://community.chocolatey.org/packages/k-litecodecpackmega)
|
||||
|
||||
## 升級軟體
|
||||
|
||||
```shell
|
||||
choco upgrade all -y
|
||||
```
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 484 KiB After Width: | Height: | Size: 484 KiB |
|
Before Width: | Height: | Size: 638 KiB After Width: | Height: | Size: 638 KiB |
|
Before Width: | Height: | Size: 634 KiB After Width: | Height: | Size: 634 KiB |
|
Before Width: | Height: | Size: 592 KiB After Width: | Height: | Size: 592 KiB |
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
../../bin/0.100.1_extend/hugo.exe
|
||||
ssh -t root@192.168.1.30 "rm -rf /var/www/html/*"
|
||||
scp -r ./public/* root@192.168.1.30:/var/www/html/
|
||||
ssh -t root@192.168.1.30 "systemctl restart apache2"
|
||||
ssh -t awin@awinpi4 "rm -rf /home/awin/docker/blog/data/*"
|
||||
scp -r ./public/* awin@awinpi4:/home/awin/docker/blog/data/
|
||||
ssh -t awin@awinpi4 "sudo docker compose -f /home/awin/docker/blog/docker-compose.yml down ; sudo docker compose -f /home/awin/docker/blog/docker-compose.yml up -d"
|
||||
|
||||