This repository was archived by the owner on Apr 29, 2025. It is now read-only.
Monorepo and initial refactor #49
Draft
bernardoforcillo wants to merge 14 commits into
Draft
Conversation
…ration, and set up Tailwind CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request includes various changes to the project configuration, environment settings, and the removal of several client-side components.
Configuration and Environment Updates:
node_modulesto.dockerignoreto prevent Docker from copying these files into the image..eslintrc.json..github/dependabot.yamlto automate dependency updates for npm and GitHub Actions..github/funding.ymlto include a GitHub sponsor link..vscode/settings.jsonto enforce editor preferences like tab size and auto-save behavior.Removal of Client-Side Components:
LoginPagecomponent fromapp/(auth)/login/page.tsx.Admincomponent fromapp/(dashboard)/admin/page.tsx.UsersPagecomponent and related logic fromapp/(dashboard)/apps/apps-page.tsxandapp/(dashboard)/apps/page.tsx. [1] [2]DashboardPagecomponent fromapp/(dashboard)/dashboard.tsx.FeatureRequestcomponent fromapp/(dashboard)/feature-request/page.tsx.DeleteDialogcomponent fromapp/(dashboard)/install/delete-dialog.tsx.This pull request includes several changes focused on configuration updates and the removal of client-side code from various pages. The most important changes include the addition of a Dependabot configuration, updates to.vscodesettings, and the removal of several client-side components and pages.Configuration Updates:
.github/dependabot.yamlto automate dependency updates for npm and GitHub Actions..vscode/settings.jsonto include editor preferences such as tab size, format on save, and TypeScript settings.Removal of Client-Side Code:
app/(auth)/login/page.tsx.app/(dashboard)/admin/page.tsx.app/(dashboard)/apps/apps-page.tsx.app/(dashboard)/feature-request/page.tsx.app/(dashboard)/install/delete-dialog.tsx.This pull request includes several significant changes across multiple files, focusing on dependency management, onboarding process removal, and API setup. The most important changes are summarized below:Dependency Management:
node_modulesto.dockerignoreto prevent unnecessary files from being included in Docker builds..github/dependabot.yamlto automate dependency updates for npm and GitHub Actions..github/funding.ymlto support the project.Onboarding Process Removal:
LogsOnboardingcomponent and related code fromapp/(dashboard)/logs/logs-onboarding.tsx.LogsPagecomponent and related code fromapp/(dashboard)/logs/logs-page.tsx.Logscomponent and related code fromapp/(dashboard)/logs/page.tsx.API Setup:
README.mdwith basic setup instructions for the API inapps/api/README.md.package.jsonfor the API with necessary dependencies and configurations inapps/api/package.json.apps/api/src/index.tswith logging, compression, and Swagger UI integration.apps/api/src/routes/index.tsusing OpenAPI and Zod for validation.apps/api/tsconfig.json.Docker Configuration:
Dockerfilefor the application to streamline the build and deployment process.Environment Configuration:
.env.examplewith placeholder values for environment variables inapps/app/.env.example.UI Enhancements:
Suspensefor lazy loading inapps/app/app/(auth)/login/page.tsxto improve user experience. [1] [2]