mirror of
https://github.com/sailor-sh/CK-X.git
synced 2026-05-27 19:03:15 +00:00
27 lines
584 B
Markdown
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. |