Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iahispano/applio-website
Dive into a world of endless possibilities fueled by advanced AI audio technology
https://github.com/iahispano/applio-website
ai applio nextjs open-source rvc shadcn voice-models website
Last synced: 6 days ago
JSON representation
Dive into a world of endless possibilities fueled by advanced AI audio technology
- Host: GitHub
- URL: https://github.com/iahispano/applio-website
- Owner: IAHispano
- License: mit
- Created: 2023-09-17T16:52:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T14:14:56.000Z (15 days ago)
- Last Synced: 2024-10-29T17:18:59.835Z (14 days ago)
- Topics: ai, applio, nextjs, open-source, rvc, shadcn, voice-models, website
- Language: TypeScript
- Homepage: https://applio.org
- Size: 34.9 MB
- Stars: 4
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Applio Websites (Monorepo)
1. **Monorepo Structure**
- The monorepo contains multiple projects. Each project is located in its respective directory under the `apps` directory.2. **Code Review**
- All changes must go through a code review process. Open a Pull Request (PR) to the `main` branch when your feature or bugfix is complete.
- PR titles should follow the format: `[Project] Short description of the change`.
- Provide a detailed description of the changes in the PR, including the problem being solved and any relevant context.## Commit Message Guidelines
1. **Format**
- Use the following format for commit messages:
```
[project]: Short description of the changeDetailed explanation (if necessary)
```
- Example:
```
docs: Add new section to documentationThe new section includes detailed instructions on setting up the development environment. Adjusted the formatting to ensure consistency.
```2. **Scope**
- Clearly specify the project you are contributing to by using the project identifier (e.g., `applio-docs`, `applio-org`, etc).
- If the change affects multiple projects, list all relevant project identifiers.3. **Message Content**
- The short description should be concise yet descriptive.
- The detailed explanation should provide additional context, if necessary, including the reasoning behind the change and any potential impacts.## Turborepo Usage
1. **Running Tasks**
- Use Turborepo to run tasks across projects efficiently.
- Common tasks include:
- `pnpm run build` to build all projects.
- `pnpm run dev` to start all projects in development mode.
- `pnpm run biome:format` to format all code.2. **Project-specific Commands**
- You can run tasks for specific projects by using the project identifier:
- `pnpm run build --filter=applio-docs`
- `pnpm run test --filter=applio-org`## Contribution Workflow
1. **Cloning the Repository**
- Clone the monorepo to your local machine:
```sh
git clone https://github.com/IAHispano/Applio-Website.git
cd Applio-Website
```2. **Setting Up the Environment**
- Install dependencies using pnpm:
```sh
pnpm install
```3. **Creating a New Branch**
- Create a new branch for your feature or bugfix:
```sh
git checkout -b feature/applio-docs-new-section
```4. **Making Changes**
- Make your changes in the appropriate project directory (`apps/applio-docs`, `apps/applio-org`).
- Commit your changes following the commit message guidelines.5. **Pushing Changes and Creating a PR**
- Push your branch to the remote repository:
```sh
git push origin feature/applio-docs-new-section
```
- Create a PR on GitHub and request a review from your team members.6. **Merging**
- Once your PR is approved and all checks pass, you can merge it into the `main` branch.## Running Project-specific Commands
- To run specific commands for a project (e.g., `applio-docs`), use the following:
```sh
pnpm i --filter=applio-docs
pnpm run dev --filter=applio-docs
```## Best Practices
- Write clean, maintainable, and well-documented code.
- Follow the coding standards and guidelines specific to each project.
- Ensure all tests pass before submitting a PR.
- Regularly pull the latest changes from the `main` branch to keep your branch up-to-date.
- Participate in code reviews by providing constructive feedback to your peers.## Example Project Commands
To set up and run the documentation project (`applio-docs`):
1. **Clone the repository:**
```sh
git clone https://github.com/IAHispano/Applio-Website
cd Applio-Website
```2. **Install dependencies for `applio-docs`:**
```sh
pnpm i --filter=applio-docs
```3. **Run the development server for `applio-docs`:**
```sh
pnpm run dev --filter=applio-docs
```## Contact
If you have any questions or need further assistance, feel free to reach out to the repository maintainers or open an issue on GitHub.
Thank you for contributing to the Applio websites monorepo! Your efforts help us build amazing products.