Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kunalsin9h/secops

A Ubuntu Desktop Application for managing security.
https://github.com/kunalsin9h/secops

Last synced: 2 months ago
JSON representation

A Ubuntu Desktop Application for managing security.

Awesome Lists containing this project

README

        


Secops Logo



Secops





Ubuntu 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)

Secops, short for *Secure Operations* is a friendly GUI application for ubuntu operating system.

## Stack

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

## Download

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 .
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
```

---