Commit Graph

70 Commits

Author SHA1 Message Date
Dokploy Bot
dcd01689d8 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@746bb3ddc6

Updated: 2026-05-07 20:36:17 UTC
2026-05-07 20:36:17 +00:00
Dokploy Bot
b5e4da9cd9 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@e0c6ed699d

Updated: 2026-05-01 00:53:23 UTC
2026-05-01 00:53:23 +00:00
Dokploy Bot
ddcb947374 chore: bump version to 0.29.2
Source: Dokploy/dokploy@fb6b06f064

Release:
v0.29.2
2026-04-25 05:09:09 +00:00
Dokploy Bot
6127c5e518 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@222b167a76

Updated: 2026-04-25 04:47:19 UTC
2026-04-25 04:47:19 +00:00
Dokploy Bot
637da35355 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@940d18ad25

Updated: 2026-04-25 03:52:56 UTC
2026-04-25 03:52:56 +00:00
Dokploy Bot
911e162617 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@29480cde90

Updated: 2026-04-24 18:50:04 UTC
2026-04-24 18:50:04 +00:00
Dokploy Bot
430c1746ba chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@d7af82731c

Updated: 2026-04-22 03:39:08 UTC
2026-04-22 03:39:08 +00:00
Dokploy Bot
138c1e044d chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@bad9731878

Updated: 2026-04-20 13:17:07 UTC
2026-04-20 13:17:07 +00:00
Dokploy Bot
56d8995b71 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@13248c8d8a

Updated: 2026-04-19 18:06:56 UTC
2026-04-19 18:06:56 +00:00
Dokploy Bot
90bc8ca394 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@b392e58001

Updated: 2026-04-18 04:41:52 UTC
2026-04-18 04:41:52 +00:00
Dokploy Bot
90e2ab63da chore: bump version to 0.29.0
Source: Dokploy/dokploy@425fef6e28

Release:
v0.29.0
2026-04-17 20:49:59 +00:00
Dokploy Bot
1ea122e562 chore: bump version to v0.29.0
Source: Dokploy/dokploy@958372c5f9

Release:
vv0.29.0
2026-04-17 20:46:47 +00:00
Dokploy Bot
1b269016b5 chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@7e13243c1d

Updated: 2026-04-17 20:11:43 UTC
2026-04-17 20:11:43 +00:00
Mauricio Siu
f829a9ac1f chore: update GitHub Actions workflow for release and npm checks
- Enhanced version checking logic in onPushToMain.yml to verify the existence of GitHub releases and npm versions before creating new releases or publishing to npm.
- Updated the GitHub release action to use softprops/action-gh-release for improved functionality and added generation of release notes.
2026-04-15 21:24:04 -06:00
Mauricio Siu
b4b4e6a655 chore: remove publish script from package.json 2026-04-15 21:16:28 -06:00
Mauricio Siu
8cb29cd8c7 chore: bump version to 0.3.1 in package.json v0.3.1 2026-04-15 21:14:37 -06:00
Mauricio Siu
edb15fd6cf chore: update GitHub Actions workflow to use GitHub token
- Replaced the usage of secrets.GH_TOKEN with github.token in onPushToMain.yml for improved security and access management during the release process.
v0.3.0
2026-04-15 21:13:21 -06:00
Mauricio Siu
edb0e37890 Merge pull request #36 from Dokploy/feat/add-support-for-all-endpoints
Feat/add support for all endpoints
2026-04-15 21:07:12 -06:00
Mauricio Siu
0d54e9bcac chore: update GitHub workflows to disable strict Corepack mode and ignore scripts during installation
- Added environment variable COREPACK_ENABLE_STRICT set to 0 in both onPushToMain.yml and test.yml workflows.
- Modified pnpm install command to include --ignore-scripts flag, preventing scripts from running during installation.
2026-04-15 21:05:39 -06:00
Mauricio Siu
d5f9d5b8fc chore: add .npmrc file to configure build script behavior
- Created a new .npmrc file to set the ignore-build-scripts option to false, allowing build scripts to run during installation.
2026-04-15 21:04:03 -06:00
Mauricio Siu
52b6c8d735 chore: update package.json to include pnpm configuration
- Added pnpm configuration to specify only built dependencies for esbuild in package.json, enhancing dependency management.
2026-04-15 21:02:39 -06:00
Mauricio Siu
c073a037b1 feat: integrate Vitest for testing and update workflows
- Added Vitest as a testing framework in package.json and configured test scripts.
- Created new test files for CLI and client functionalities, ensuring comprehensive coverage.
- Updated GitHub Actions workflows to include testing steps and streamlined release process.
- Removed the deprecated onRelease workflow to consolidate CI/CD processes.
2026-04-15 21:00:48 -06:00
Mauricio Siu
0869e2d69a chore: update README and remove .mocharc.json
- Removed the .mocharc.json file as part of the project cleanup.
- Updated README to enhance clarity on usage, authentication options, and command examples.
- Added details on environment variable support and improved command structure for better user guidance.
2026-04-15 18:47:33 -06:00
Mauricio Siu
4d604a1a75 feat: add environment configuration support
- Introduced .env.example file to provide a template for environment variables.
- Updated .gitignore to exclude .env files from version control.
- Implemented loadEnvFile function in client.ts to load environment variables from a .env file into process.env, enhancing configuration management.
2026-04-15 18:42:13 -06:00
Mauricio Siu
70f542990d refactor: clean up imports and improve function formatting
- Reordered and grouped import statements for better readability in client.ts, index.ts, and auth.ts.
- Updated the readAuthConfig function to prioritize DOKPLOY_API_KEY over DOKPLOY_AUTH_TOKEN.
- Enhanced formatting of apiPost and apiGet functions for improved clarity and consistency.
2026-04-15 18:41:20 -06:00
Mauricio Siu
5b02a22e21 chore: update copyright year and ownership in LICENSE file
- Changed copyright from 2024 Mauricio Siu to 2026 Dokploy Technologies, Inc. in LICENSE.md.
2026-04-15 18:38:16 -06:00
Mauricio Siu
d51ea5b2f7 chore: remove Prettier configuration file
- Deleted .prettierrc.json as part of the migration to Biome for linting and formatting.
2026-04-15 18:37:50 -06:00
Mauricio Siu
ac02c614a6 refactor: migrate to biome and update CLI structure
- Removed ESLint configuration and ignore files in favor of Biome for linting.
- Introduced biome.json for configuration and updated package.json to reflect new dependencies.
- Added OpenAPI specification for Dokploy API and generated CLI commands from it.
- Refactored CLI entry point to use Commander instead of Oclif.
- Implemented new authentication command and removed deprecated commands.
- Updated TypeScript configuration and added build scripts for improved development workflow.
- Cleaned up unused files and commands to streamline the codebase.
2026-04-15 18:37:45 -06:00
Mauricio Siu
761f6e795f docs: update README to include environment management commands
- Added documentation for new commands related to environment management: `dokploy environment:create` and `dokploy environment:delete`.
- Enhanced clarity on usage instructions for managing environments within the project.
2025-10-05 02:07:59 -06:00
Mauricio Siu
1f1d6713aa Merge pull request #12 from Dokploy/fix/environments
Fix/environments
2025-10-05 02:05:23 -06:00
Mauricio Siu
2647a59bb6 chore: bump version to v0.2.8 2025-10-05 02:04:57 -06:00
Mauricio Siu
37f4b8b56e feat: enhance project info command with environment details
- Refactored ProjectInfo command to retrieve project information based on environments.
- Added detailed logging for applications, compose services, and databases categorized by environment.
- Implemented total counts for applications and databases across all environments.
- Improved error handling for cases with no environments found.
2025-10-05 02:04:34 -06:00
Mauricio Siu
f95d33cfbb feat: add environment creation and deletion commands
- Introduced EnvironmentCreate and EnvironmentDelete commands for managing environments within projects.
- Implemented interactive prompts for selecting projects and environments if flags are not provided.
- Added flags for projectId, environmentId, name, description, and skipConfirm to enhance command flexibility.
- Improved error handling for environment creation and deletion processes.
2025-10-05 02:02:12 -06:00
Mauricio Siu
a7a5e2e0a3 feat: add environment selection to database commands
- Introduced environmentId flag to all database commands (create, delete, deploy, stop) for specifying the environment.
- Implemented interactive prompts for selecting project and environment if flags are not provided.
- Enhanced error handling for cases with no available environments or database instances.
- Updated type definitions to include Database for better type safety.
2025-10-05 01:59:37 -06:00
Mauricio Siu
68786fb7f1 feat: add environment selection to app management commands
- Introduced environmentId flag to AppCreate, AppDelete, and AppStop commands for specifying the environment.
- Implemented interactive prompts for selecting project and environment if flags are not provided.
- Enhanced error handling for cases with no available environments or applications.
- Updated type definitions to include Application for better type safety.
2025-10-05 01:36:52 -06:00
Mauricio Siu
d32c3b2be2 feat: enhance app deployment command with environment selection
- Added environmentId flag to the AppDeploy command for specifying the environment.
- Implemented interactive prompts for selecting project, environment, and application if flags are not provided.
- Updated type definitions to include Application and Environment types for better type safety.
- Improved error handling for cases with no available environments or applications.
2025-10-05 01:33:03 -06:00
Mauricio Siu
1a01289349 Merge pull request #10 from Sebbev/fix/pull-and-push-command
Add environment selection for env pull and push commands
2025-10-05 01:26:31 -06:00
Sebastian Vallin
dcfb478035 fix(env): Correct prompt message in env push command 2025-09-17 16:26:10 +02:00
Sebastian Vallin
d7ef05239f feat: Add environment selection for env pull and push commands 2025-09-17 16:26:10 +02:00
Mauricio Siu
82aed684b9 feat: update authentication method to use x-api-key header
- Replace Bearer token authentication with x-api-key header across all commands
- Update token verification endpoints from auth.verifyToken to user.get
- Remove unnecessary console.log debug statements
- Bump version to v0.2.7
2025-03-04 00:13:51 -06:00
Mauricio Siu
21dd3f0b53 Merge pull request #6 from Dokploy/2-make-the-cli-work-on-ci 2025-02-23 22:14:03 -06:00
Mauricio Siu
6d186d550e feat: improve token verification with environment variable support
- Add support for DOKPLOY_AUTH_TOKEN and DOKPLOY_URL environment variables
- Enhance error messaging for authentication configuration
- Improve token validation process with more robust error handling
- Update version to v0.2.6
2025-02-23 21:44:04 -06:00
Mauricio Siu
10cfe23763 feat: enhance CLI commands with improved flags and error handling
This commit introduces several improvements across multiple CLI commands:
- Added new flags for more flexible command usage
- Implemented interactive mode for commands when flags are not provided
- Improved error handling and messaging
- Added support for environment variable authentication
- Standardized confirmation prompts and error messages
- Enhanced type safety with TypeScript improvements
2025-02-23 21:29:45 -06:00
Mauricio Siu
7cb5369f15 chore: bump version 2024-12-21 02:15:45 -06:00
Mauricio Siu
4b97ddcfd3 feat: add enviroment management 2024-12-21 02:11:19 -06:00
Mauricio Siu
0bdec259f4 refactor: add documentation 2024-12-21 02:04:52 -06:00
Mauricio Siu
f64bbc3348 Merge pull request #3 from kidylee/main
feat: add env pull/push commands
2024-12-21 02:04:30 -06:00
Mauricio Siu
05fadbe800 Update src/commands/env/pull.ts 2024-12-21 02:03:18 -06:00
An Li
32f630a381 feat: add env pull/push commands 2024-11-20 11:09:33 +08:00
Mauricio Siu
32c57c8155 Update readme.md 2024-07-07 14:49:58 -06:00