FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Plotly.NET/.devcontainer/postCreate.sh at dev · plotly/Plotly.NET · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
plotly
/
Plotly.NET
Public
Notifications
You must be signed in to change notification settings
Fork
99
Star
859
Code
Issues
42
Pull requests
3
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Plotly.NET
/
.devcontainer
/
postCreate.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (23 loc) · 890 Bytes
Breadcrumbs
Plotly.NET
/
.devcontainer
/
postCreate.sh
Copy path
File metadata and controls
30 lines (23 loc) · 890 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!
/usr/bin/env bash
set
-euo pipefail
echo
"
==> Restoring dotnet local tools (fantomas, fsdocs)
"
dotnet tool restore
echo
"
==> Warming up NuGet restore for the main solution
"
dotnet restore Plotly.NET.sln
||
true
echo
"
==> Installing agent CLIs globally (Claude Code + Codex)
"
npm install -g \
@anthropic-ai/claude-code \
@openai/codex \
opencode-ai@latest
echo
"
==> Aliasing agent CLIs to skip approvals (sandbox is the devcontainer itself)
"
cat
>>
~
/.bashrc
<<
'
EOF
'
# devcontainer: agent CLIs skip approvals since the container IS the sandbox
alias claude='claude --dangerously-skip-permissions'
alias codex='codex --dangerously-bypass-approvals-and-sandbox'
EOF
chmod +x build.sh
echo
"
==> Done. Verify with:
"
echo
"
./build.sh # default build target
"
echo
"
./build.sh RunTestsAllFast
"
echo
"
claude --version
"
echo
"
codex --version
"
Back
|
FazBrowse Home
|
New Git URL