33 lines
758 B
Markdown
33 lines
758 B
Markdown
# Transmute Client
|
|
|
|
This is Web UI part of the Transmute stack which talks directly to the Transmute Server/API.
|
|
|
|
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.2.2.
|
|
|
|
## Table of Contents
|
|
|
|
[[_TOC_]]
|
|
|
|
## Prerequisites
|
|
|
|
- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
- [NodeJS 18](https://nodejs.org/en/)
|
|
- _[Docker](https://docs.docker.com/install/) (Optional)_
|
|
|
|
## Setup
|
|
The project can be run using NPM.
|
|
|
|
1. Install the dependencies: `npm install`
|
|
2. Start the Angular server: `npm run start`
|
|
|
|
The client should now be accessible on [http://localhost:4200](http://localhost:4200)
|
|
|
|
## Cheatsheet
|
|
```bash
|
|
# Start Angular server
|
|
npm run start
|
|
|
|
# Build production
|
|
npm run build:prod
|
|
```
|