-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Werkhausen, Malte edited this page Jul 7, 2026
·
1 revision
MyShip is an npm workspaces monorepo with two main apps: a server (gateway) and a client.
- Node.js (LTS) and npm
- Git
git clone https://github.com/MyShipDE/myship.git cd myship # Install all workspace dependencies from the repo root npm install
# Server (gateway) npm run server:start # Client (Angular dev server on http://localhost:4200) npm run client:start # Production build of the client npm run client:build
Each app is configured via a local .env file. Copy the templates and fill in
your own values:
cp apps/server/.env.example apps/server/.env cp apps/client/electron/deploy/.env.example apps/client/electron/deploy/.env
See Configuration for details.