Introduction
Quick Dockerize Tool is a command-line interface that helps you set up Docker and CI/CD configuration files for your projects. It supports various project types, including React.js, Node.js, and more. The tool is designed to save time and reduce errors by automating the setup process.
1npx quick-cicdFeatures
Prerequisites
Before starting, ensure the following are installed on your system:
React.js
Make sure in vite.config.ts or vite.config.js file you have the following configuration:
1// vite.config.ts or vite.config.js2export default defineConfig({3 plugins: [react()],4 preview: {5 host: "0.0.0.0",6 port: 3000,7 },8});9