Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-22T15:04:38.000Z (8 months ago)
- Last Synced: 2024-05-22T16:27:54.750Z (8 months ago)
- Topics: dockerfile, hacktoberfest, nextjs, react
- Language: TypeScript
- Homepage:
- Size: 900 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pelusa React
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/javi-aranda/pelusa-react/main)
![Pelusa React](./resources/header.png)
## 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
```