This repository stores all the code for the MarkDock web application.
- Clone the repository
git clone git@github.com:mark-dock/mark-dock-web.git
-
Verify the API URL in the
.env.development
file. The API URL should be the URL of your local MarkDock API server. -
Run the docker container with the following command
docker compose up
-
Open the browser and navigate to
http://localhost:3000
-
(Optional) If you are running the application inside WSL and want to access the application from another device on the same network, you need to run the following command to get the IP address of the WSL container. (This command will expose the WSL container to the network)
sudo apt install npm # If you don't have npm installed
npx expose-wsl@latest
This will output the IP address of the WSL container. You can now access the application from another device on the same network by navigating to http://<WSL_IP>:3000