Files
start-os/frontend
Alex Inkin 8942c29229 feat(marketplace): add separate package and move some entities in it (#1283)
* feat(marketplace): add separate package and move some entities in it

* feat(marketplace): refactor release notes and list

* feat(marketplace): refactor showing a package

* chore: fix install progress

* chore: fix angular.json

* chore: properly share stream
2022-03-15 11:11:54 -06:00
..
2022-02-24 16:20:52 -07:00
2022-02-15 12:17:42 -07:00

EmbassyOS Frontend

EmbassyOS has three user interfaces and a shared library, all written in Ionic/Angular/Typescript using an Angular workspace environment:

  1. ui: the main user interface
  2. setup-wizard: used to facilitate initial setup
  3. diagnostic-ui: used to display certain diagnostic information in the event EmbassyOS fails to initialize
  4. shared: contains components, types, and functions shared amongst the three UIs.

Development Environment Setup

Check your versions

node --version
v16.10.0

npm --version
v8.0.0

Running locally with mocks

git clone https://github.com/Start9Labs/embassy-os.git
cd embassy-os
git submodule update --init --recursive
cd frontend
npm ci
npm run build:deps

Copy config-sample.json and its contents to a new file config.json.

cp config-sample.json config.json

By default, "useMocks" is set to true. Valid values for "maskAs" are tor and lan.

Start the development server(s)

npm run start:ui
npm run start:setup-wizard
npm run start:diagnostic-ui