Skip to content

Commit

Permalink
feat: update installation instruction for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
1337kid committed Jul 29, 2024
1 parent 096d671 commit d34f61e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,21 @@ SecretUS is a secure and reliable password manager designed to store and manage
git clone https://github.com/TeamNuclearCodes/SecretUS.git
cd SecretUS
sudo make install
# SecretUS will be available under application search menu after installation
```
### Windows
```powershell
git clone https://github.com/TeamNuclearCodes/SecretUS.git
cd SecretUS
.\install_build.ps1
python3 -m virtualenv .venv
.\.venv\Scripts\activate
pip install -r requirements.txt
cd frontend
npm i
npm run build
cd ..
pyinstaller -w -F --add-data "frontend/build;frontend/build" app.py --distpath build/dist --workpath build/build
.\build\dist\app.exe
```

## Gallery
Expand Down

0 comments on commit d34f61e

Please sign in to comment.