admin-shopify-xipat/
├── src/ # Source code for the application
│ ├── components/ # Reusable UI components
│ ├── pages/ # Page components
│ ├── common/ # Contains common utilities and constants
│ ├── custom/ # Contains custom components
│ ├── routes/ # Contains routing configuration
│ ├── types/ # Contains TypeScript type definitions.
│ └── App.js # Main application component
├── public/ # Public assets
│ ├── index.html # Main HTML file
│ └── favicon.ico # Favicon
├── package.json # Project metadata and dependencies
├── README.md # Project documentation
└── .gitignore # Git ignore file
- Clone the repository:
git clone https://github.com/AnhHT3010/admin-shopify.git
cd admin-shopify-xipat- Install dependencies:
npm install- Run the development server:
npm start- Build for production:
npm run build- Run tests:
npm test- Lint the code:
npm run lintFor more detailed information, refer to the documentation within the project.