ffplayout/docs/README.md

48 lines
678 B
Markdown
Raw Normal View History

2020-01-29 17:40:15 +01:00
# ffplayout
> web GUI for ffplayout engine
2023-01-11 10:54:25 +01:00
# Nuxt 3 Minimal Starter
2020-01-29 17:40:15 +01:00
2023-01-11 10:54:25 +01:00
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
2020-01-30 21:24:41 +01:00
```
2023-01-11 10:54:25 +01:00
## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
2020-01-30 21:24:41 +01:00
```
2023-01-11 10:54:25 +01:00
## Production
2020-01-29 17:40:15 +01:00
2023-01-11 10:54:25 +01:00
Build the application for production:
2020-01-29 17:40:15 +01:00
2023-01-11 10:54:25 +01:00
```bash
npm run build
```
2020-01-29 17:40:15 +01:00
2023-01-11 10:54:25 +01:00
Locally preview production build:
```bash
npm run preview
2020-01-29 17:40:15 +01:00
```
2023-01-11 10:54:25 +01:00
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.