Built with the tools and technologies:
- 📍 Overview
- 👾 Features
- 📂 Repository Structure
- 🧩 Modules
- 🚀 Getting Started
- 📌 Project Roadmap
- 🤝 Contributing
- 🎗 License
- 🙌 Acknowledgments
└── vite-r3f-boilerplate/
├── README.md
├── eslint.config.js
├── index.html
├── package.json
├── postcss.config.js
├── public
│ └── vite.svg
├── src
│ ├── App.tsx
│ ├── index.css
│ ├── main.tsx
│ ├── pages
│ └── vite-env.d.ts
├── tailwind.config.js
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
├── vite.config.ts
└── yarn.lock
.
File |
---|
postcss.config.js |
tsconfig.node.json |
tsconfig.json |
tailwind.config.js |
tsconfig.app.json |
package.json |
vite.config.ts |
index.html |
eslint.config.js |
src.pages.Home
File |
---|
index.tsx |
Build the project from source:
- Clone the vite-r3f-boilerplate repository:
❯ git clone https://github.com/Gianluska/vite-r3f-boilerplate
- Navigate to the project directory:
❯ cd vite-r3f-boilerplate
- Install the required dependencies:
❯ yarn install
To run the project, execute the following command:
❯ yarn dev
Contributions are welcome! Here are several ways you can contribute:
- Report Issues: Submit bugs found or log feature requests for the
vite-r3f-boilerplate
project. - Submit Pull Requests: Review open PRs, and submit your own PRs.
- Join the Discussions: Share your insights, provide feedback, or ask questions.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/Gianluska/vite-r3f-boilerplate
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!