Last active
September 12, 2024 21:38
-
-
Save kishanio/b5141a6d508b8bc04adec056672bf5cb to your computer and use it in GitHub Desktop.
CS Hiring Workshop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git init | |
| git status | |
| git add src/ | |
| git status | |
| git add . | |
| git status | |
| git config user.name "Kishan Rameshchandra Thobhani" | |
| git config user.email "thobhanikishan@gmail.com" | |
| git commit -m "initial commit" | |
| git status | |
| git log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm i -D @types/node | |
| npx shadcn@latest init | |
| npx shadcn@latest add button |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install -D tailwindcss postcss autoprefixer | |
| npx tailwindcss init -p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git -v | |
| node -v | |
| npm create vite cs-hiring-workshop -- --template react-ts | |
| cd cs-hiring-workshop | |
| npm i | |
| npm run dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment