UW's THINKLab Website
You can clone the respiratory by using HTTPS through the "<>Code" symbol on the right corner. Copy the provided link, and paste it in your terminal
git clone https://github.com/UW-THINKlab/think-lab.gitTo modify and/or run the website you need to install several depencencies. Please run the commands below in your terminal before you modify and/or run the website.
All the commands below will allow you to install the necessary depenencies.
npm installnpm install react-bootstrap bootstrapnpm install -D tailwindcssTo view the website locally you can run npm start to view the website. The website will run on localhost3000 by default.
npm startWhen you run npm start, the website will be open automatically on your device's browser. If the website does not open, you can paste http://localhost:3000/ in your device's broswer.
After updating the website locally, run the following commands to update the website.
git add .git commit -m 'message'git pushnpm run deployThis will publish the updated website as GitHub page.