Skip to content

Commit

Permalink
adding build directories
Browse files Browse the repository at this point in the history
  • Loading branch information
noahgift committed Mar 29, 2023
1 parent 18eea70 commit bcf423a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#gitignore
tch-rs-pretrain-example-docker

#ignore local checkout
plotters-doc-data

Expand Down
6 changes: 6 additions & 0 deletions cmds.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### GitHub Copilot Commands
## Prompt: ?? find all large rust target folders and get size and location
## CMD: find . -name "target" -type d -exec du -sh {} \;

## Prompt: ?? delete all rust build directories to save space
## CMD: find . -name "target" -type d -exec rm -rf {} \;
15 changes: 15 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash

#some setup stuff for the dev environment
#install nodejs
curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash - &&\
sudo apt-get install -y nodejs

#install GitHub Copilot CLI
npm install -g @githubnext/github-copilot-cli

#authenticate with GitHub Copilot
github-copilot-cli auth

#Upgrade
#npm install -g @githubnext/github-copilot-cli

0 comments on commit bcf423a

Please sign in to comment.