https://github.com/tinymce/tinymce-angular-test-page
Angular test page for QA
https://github.com/tinymce/tinymce-angular-test-page
Last synced: 11 months ago
JSON representation
Angular test page for QA
- Host: GitHub
- URL: https://github.com/tinymce/tinymce-angular-test-page
- Owner: tinymce
- Created: 2022-03-14T11:38:29.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T11:20:58.000Z (almost 2 years ago)
- Last Synced: 2024-04-16T07:45:04.749Z (almost 2 years ago)
- Language: TypeScript
- Size: 2.49 MB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tinymce Angular Test Page
This project is built using [Angular CLI](https://github.com/angular/angular-cli) version 15.2.9.
## Table of Contents
- [Setting Up the Project](#setting-up-the-project)
- [Running the Development Server](#running-the-development-server)
- [Building the Project](#building-the-project)
## Setting Up the Project
To install all dependencies, run:
```bash
yarn install
```
Alternatively, you can use `npm`, `pnpm`, or `bun`:
```bash
npm install
```
```bash
pnpm install
```
```bash
bun install
```
## Running the Development Server
To start the development server, execute:
```shell
yarn start
```
For other package managers:
```shell
npm start
```
```shell
pnpm start
```
```shell
bun start
```
## Building the Project
To compile the project, use:
```shell
yarn build
```
For other package managers:
```shell
npm run build
```
```shell
pnpm run build
```
```shell
bun run build
```
The compiled output will be placed in the `dist/` directory.