https://github.com/kunalsin9h/secops
A Ubuntu Desktop Application for managing security.
https://github.com/kunalsin9h/secops
Last synced: 6 months ago
JSON representation
A Ubuntu Desktop Application for managing security.
- Host: GitHub
- URL: https://github.com/kunalsin9h/secops
- Owner: KunalSin9h
- License: mit
- Created: 2023-09-06T07:41:01.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-23T10:54:29.000Z (12 months ago)
- Last Synced: 2025-05-12T01:37:08.723Z (6 months ago)
- Language: TypeScript
- Homepage:
- Size: 3.49 MB
- Stars: 28
- Watchers: 2
- Forks: 2
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-tauri - Secops - Ubuntu Operating System security made easy. (Applications / Security)
README
Secops
Ubuntu Desktop Security Made Easy
> [!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
```
---