A simple and flexible boilerplate for building web applications with [Node.js/React/Other Framework], tailored to get you started quickly.
Follow these steps to get your environment set up.
-
Clone this repository:
git clone https://github.com/ixlammm/tauri-nextui-boilerplate project-name cd project-name
-
Install dependencies:
pnpm install
-
Run the application:
pnpm tauri dev
You can use this boilerplate as a base for your app project. The structure and configuration are designed for simplicity, but feel free to extend and customize as needed.
This boilerplate follows a simple folder structure to keep your code organized.
/project-name
├── /components # NextUI components
├── /src # NextJS source directory
│ ├── /app
│ ├── /config
│ ├── /public
│ ├── ...
├── .env.local # Environment variables (create your own)
├── package.json # Project metadata and dependencies
├── README.md # This file
└── ...
Contributions are welcome! Please fork the repository and submit a pull request with your changes.
-
Fork the repo.
-
Create a new branch:
git checkout -b feature-name
-
Make your changes and commit:
git commit -am 'Add new feature'
-
Push to your branch:
git push origin feature-name
-
Create a new Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.