English
How to deploy
Quickstart guide to get Kodus Web Application running on your local machine.
git clone https://github.com/kodustech/kodus-web.git
yarn install
cp .env.example .env
.env
yarn docker:build yarn docker:start
http://localhost:3000
├── src/ # Main source code │ ├── app/ # App router pages and layouts │ │ ├── ui/ # UI components │ │ └── features/ # Feature components │ ├── hooks/ # Custom React hooks │ ├── lib/ # Utility functions │ ├── services/ # API services │ └── types/ # TypeScript types │ ├── public/ # Static assets │ ├── images/ # Image assets │ └── fonts/ # Font files │ ├── styles/ # Global styles │ └── tailwind/ # Tailwind configuration │ ├── tests/ # Test files │ ├── unit/ # Unit tests │ ├── integration/ # Integration tests │ └── e2e/ # End-to-end tests │ ├── docker/ # Docker configurations │ ├── development/ # Development environment │ └── production/ # Production environment │ └── scripts/ # Utility scripts └── setup/ # Setup scripts
Was this page helpful?