Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kunalsin9h/secops

An Linux Desktop Application for managing security.
https://github.com/kunalsin9h/secops

Last synced: 3 months ago
JSON representation

An Linux Desktop Application for managing security.

Awesome Lists containing this project

README

        


MeltCD Logo



Secops





Linux Desktop Security Made Easy




Publish
Build
Test


GitHub Chat
Version


Secops Dashboard Image

> [!IMPORTANT]
> More Security Settings need to be added, you can request one in [issues](https://github.com/KunalSin9h/Secops/issues)

## Supported OS

- [x] Ubuntu
- [ ] Arch Linux (Next Up)
- [ ] Pop OS (After Arch Linux)

## Stack

- [Tauri](https://tauri.app/)
- React + Vite
- TailwindCSS
- Cmake (required)

## Download
```bash
# To download latest version, run
sh <(curl https://store.singh.software/secops)
```
Alternatively download from [release page](https://github.com/KunalSin9h/Secops/releases)

## Local Setup

Clone the repository

```bash
git clone https://github.com/KunalSin9h/secops
```

### Requirements

#### Download All requirements on OS for developing the project.

```bash
cd secops # go to project directory

cmake .
cd build
make run_script
```

Download Dependencies

```bash
pnpm install # for frontend

cd src-tauri
cargo fetch # for backend

cd ../ # come back to home repo
```

Run the development app

```bash
pnpm tauri dev
```

---