A standardized Next.js template maintained by Solvro Science Club at Wrocław University of Science and Technology. This template incorporates our best practices, coding standards, and recommended project structure for web development projects. It serves as a starting point for new Solvro members and projects, ensuring consistency and quality across our initiatives.
- Next.js
- React.js
- TypeScript
- Tailwind CSS
- Shadcn/ui
- Tanstack Query
cd web-template
npm install
npm run dev
Open your browser and navigate to http://localhost:3000.
https://docs.solvro.pl/guides/github
If you are a Windows user, follow this tutorial to connect via SSH
- Checkout and update main branch
git checkout main
git pull origin main
git fetch
- Create new feature branch
git checkout -b feat/x_my_feature_branch
'x' stands for issue number; this command will create and checkout a new branch named feat/x_my_feature_branch
- Commit your changes:
git add .
git commit -m "<description>"
- Push to remote:
git push origin feat/x_my_feature_branch
- Create a Pull Request on GitHub and wait for a review
-
Do not push directly to main branch!
-
Please remember to commit before checking out to a different branch
-
Clean up after a successful merge
git branch -d feat/x_my_feature_branch git push origin --delete feat/x_my_feature_branch
For questions or suggestions, please reach out to us:
- ✉️ Email: kn.solvro@pwr.edu.pl
- 🌐 Website: solvro.pwr.edu.pl
- 📘 Facebook: KN Solvro
Thank you for reading! Stay tuned for more updates!