Skip to content

Commit

Permalink
chore:8月23日
Browse files Browse the repository at this point in the history
  • Loading branch information
aehyok committed Aug 23, 2024
1 parent 04916bf commit 78950c2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/daily/2024-08.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 8月23日
- Power Shell 执行脚本策略
- Get-ExecutionPolicy
- Restricted: 不允许运行任何脚本。
- AllSigned: 允许运行由受信任的发布者签名的脚本。
- RemoteSigned: 允许运行本地脚本,且必须对从互联网下载的脚本进行签名。
- Unrestricted: 允许运行所有脚本,但对于从互联网下载的脚本会有警告。
- 设置可运行脚本
- Set-ExecutionPolicy Unrestricted
- 设置只允许运行一次脚本
- powershell -ExecutionPolicy Bypass -File .\install.ps1
## 8月21日
- uniapp和aar包调用
- https://ask.dcloud.net.cn/article/36284
Expand Down
17 changes: 17 additions & 0 deletions docs/javascript/2024-08-23-openobserve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## 文档中心
- https://openobserve.ai/docs/quickstart/#openobserve-cloud
- https://github.com/openobserve/openobserve

## docker创建
```
docker run -d \
--name openobserve \
-v $PWD/data:/data \
-p 5080:5080 \
-e ZO_ROOT_USER_EMAIL="[email protected]" \
-e ZO_ROOT_USER_PASSWORD="M9y2512!" \
openobserve/openobserve:latest
```

## 本地访问
- http://localhost:5080 登录

0 comments on commit 78950c2

Please sign in to comment.