π Cheat sheet β
Interacting with project β
Creating a new project β
Called my_cool_project
for GitHub user ghuser
:
gh repo create my_cool_project --private --template nyuccl/smile
gh repo clone ghuser/my_cool_project
gh repo edit ghuser/my_cool_project --description "my new project description"
cd my_cool_project
git secret reveal
npm run config:upload
npm run setup_project
Delete a repo from the command line β
You may have to follow instructions to enable permissions to delete the repo) and the local files:
gh repo delete ghuser/my_cool_project
rm -rf my_cool_project
Run development server β
npm run dev
Run development server for documentation β
Only when working on the nyuccl/smile
repo
npm run docs:dev
Build the local files and serve them β
This mimics the final deployment state of the files
npm run build
npm run serve
Deploy a specific version of your code to the server β
Replace XXXXX
with the git hash for the version you want to deploy
gh workflow run deploy.yml -f github_sha=XXXXX