mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
115 lines
2.2 KiB
Markdown
115 lines
2.2 KiB
Markdown
# Description
|
|
|
|
This repository hosts the UI component for Prowler, providing a user-friendly web interface to interact seamlessly with Prowler's features.
|
|
|
|
|
|
## 🚀 Production deployment
|
|
### Docker deployment
|
|
#### Clone the repository
|
|
```console
|
|
# HTTPS
|
|
git clone https://github.com/prowler-cloud/ui.git
|
|
|
|
# SSH
|
|
git clone git@github.com:prowler-cloud/ui.git
|
|
|
|
```
|
|
#### Build the Docker image
|
|
```bash
|
|
docker build -t prowler-cloud/ui . --target prod
|
|
```
|
|
#### Run the Docker container
|
|
```bash
|
|
docker run -p 3000:3000 prowler-cloud/ui
|
|
```
|
|
|
|
### Local deployment
|
|
#### Clone the repository
|
|
|
|
```console
|
|
# HTTPS
|
|
git clone https://github.com/prowler-cloud/ui.git
|
|
|
|
# SSH
|
|
git clone git@github.com:prowler-cloud/ui.git
|
|
|
|
```
|
|
|
|
#### Build the project
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
#### Run the production server
|
|
|
|
```bash
|
|
npm start
|
|
```
|
|
|
|
## 🧪 Development deployment
|
|
### Docker deployment
|
|
#### Clone the repository
|
|
```console
|
|
# HTTPS
|
|
git clone https://github.com/prowler-cloud/ui.git
|
|
|
|
# SSH
|
|
git clone git@github.com:prowler-cloud/ui.git
|
|
|
|
```
|
|
#### Build the Docker image
|
|
```bash
|
|
docker build -t prowler-cloud/ui . --target dev
|
|
```
|
|
#### Run the Docker container
|
|
```bash
|
|
docker run -p 3000:3000 prowler-cloud/ui
|
|
```
|
|
|
|
### Local deployment
|
|
#### Clone the repository
|
|
|
|
```console
|
|
# HTTPS
|
|
git clone https://github.com/prowler-cloud/ui.git
|
|
|
|
# SSH
|
|
git clone git@github.com:prowler-cloud/ui.git
|
|
|
|
```
|
|
|
|
#### Install dependencies
|
|
|
|
You can use one of them `npm`, `yarn`, `pnpm`, `bun`, Example using `npm`:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
#### Run the development server
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
## Setup pnpm (optional)
|
|
|
|
If you are using `pnpm`, you need to add the following code to your `.npmrc` file:
|
|
|
|
```bash
|
|
public-hoist-pattern[]=*@nextui-org/*
|
|
```
|
|
|
|
After modifying the `.npmrc` file, you need to run `pnpm install` again to ensure that the dependencies are installed correctly.
|
|
|
|
## Technologies Used
|
|
|
|
- [Next.js 14](https://nextjs.org/docs/getting-started)
|
|
- [NextUI v2](https://nextui.org/)
|
|
- [Tailwind CSS](https://tailwindcss.com/)
|
|
- [Tailwind Variants](https://tailwind-variants.org)
|
|
- [TypeScript](https://www.typescriptlang.org/)
|
|
- [Framer Motion](https://www.framer.com/motion/)
|
|
- [next-themes](https://github.com/pacocoursey/next-themes)
|