https://github.com/javi-aranda/pelusa-react
Frontend of PELUSA, the ML engine to detect malicious URLs
https://github.com/javi-aranda/pelusa-react
dockerfile hacktoberfest nextjs react
Last synced: 7 months ago
JSON representation
Frontend of PELUSA, the ML engine to detect malicious URLs
- Host: GitHub
- URL: https://github.com/javi-aranda/pelusa-react
- Owner: javi-aranda
- License: mit
- Created: 2023-09-25T16:40:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T16:58:01.000Z (about 1 year ago)
- Last Synced: 2025-04-11T16:12:41.705Z (10 months ago)
- Topics: dockerfile, hacktoberfest, nextjs, react
- Language: TypeScript
- Homepage:
- Size: 744 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pelusa React


## What is Pelusa?
Pelusa React is a web application that allows you to interact with the Pelusa API to help you classify URLs as malicious or benign.
## Getting Started
First, install dependencies:
```bash
npm install
# or
yarn install
```
Run the development server:
```bash
npm run dev
# or
yarn dev
```
Or use Docker:
```bash
docker build -t pelusa-react .
docker run -p 3000:3000 pelusa-react
```
Open [http://localhost:3000](http://localhost:3000) in your favourite browser to access the application.
## Environment variables
The following environment variables are required to run the application, use a `.env.local` file to set them:
```bash
API_ENDPOINT=http://localhost:8000 # Modify as necessary
```