Files
CK-X/docs/local-setup-guide.md
2026-05-10 07:09:22 +05:30

27 lines
584 B
Markdown

# Local Setup Guide for CK-X Simulator
## Quick Setup
1. Clone the repository:
```bash
git clone https://github.com/@sailor-sh/CK-X.git
cd ck-x
```
2. Run the deployment script:
```bash
./scripts/compose-deploy.sh
```
Alternatively,
2. Use the command `docker compose up` and manually navigate to `http://localhost:30080` in your browser
The script will deploy all services locally and open the application in your browser.
After making any changes to the code, you can redeploy with:
```bash
docker compose up -d
```
This setup has been tested on Mac and Linux environments.