Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
update the makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
franceme committed Sep 16, 2024
1 parent ee797aa commit 6b94244
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion makefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,17 @@ def env():
"""docker run --rm -it -v "{0}:/sync" -p 6902:6901 --privileged --shm-size=512m -e VNC_PW=password frantzme/dev:ui "/bin/bash echo \"sudo apt-get install -y npm && sudo npm install -g npm@latest\" >> /home/kasm-user/.bashrc && /bin/bash" """.format(curdir)
)

def ini():
def ini_one():
for x in [
"apt-get update",
"apt-get --fix-missing",
"apt-get install -y python3-pip zip unzip wget curl",
"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash", #https://nodejs.org/en/download/package-manager/current
]:
run(x)

def ini_two():
for x in [
"nvm install 20",
"npm install",
"npm install -g @vscode/vsce",
Expand Down

0 comments on commit 6b94244

Please sign in to comment.