FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cloudflare-python/scripts/bootstrap at main · cloudflare/cloudflare-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
cloudflare
/
cloudflare-python
Public
Notifications
You must be signed in to change notification settings
Fork
146
Star
499
Code
Issues
22
Pull requests
8
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
cloudflare-python
/
scripts
/
bootstrap
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
30 lines (24 loc) · 695 Bytes
Breadcrumbs
cloudflare-python
/
scripts
/
bootstrap
Copy path
File metadata and controls
executable file
·
30 lines (24 loc) · 695 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
-e
cd
"
$(
dirname
"
$0
"
)
/..
"
if
[
-f
"
Brewfile
"
]
&&
[
"
$(
uname -s
)
"
=
"
Darwin
"
]
&&
[
"
${SKIP_BREW
:-
}
"
!=
"
1
"
]
&&
[
-t
0 ]
;
then
brew bundle check
>
/dev/null
2>&1
||
{
echo
-n
"
==> Install Homebrew dependencies? (y/N):
"
read
-r response
case
"
$response
"
in
[yY][eE][sS]|[yY])
brew bundle
;;
*
)
;;
esac
echo
}
fi
echo
"
==> Installing Python…
"
uv python install
echo
"
==> Installing Python dependencies…
"
uv sync --all-extras
echo
"
==> Exporting Python dependencies…
"
#
note: `--no-hashes` is required because of https://github.com/pypa/pip/issues/4995
uv
export
-o requirements-dev.lock --no-hashes
Back
|
FazBrowse Home
|
New Git URL