Skip to content

Commit

Permalink
create manual install script
Browse files Browse the repository at this point in the history
  • Loading branch information
bastoscorp committed Jul 18, 2024
1 parent eb822a0 commit 2ca4eeb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ Note : I prefer to precise that an **internet connection is required.**

## Installation :

Very simple, execute this :
Very simple, if you have git installed on your target execute this :

`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/bastoscorp/pvAlert/main/install_pvAlert.sh)"`
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/bastoscorp/pvAlert/main/install_pvAlert_with_git.sh)"`

If you don't have git installed on your target do this:

1. Download latest tag : https://github.com/bastoscorp/pvAlert/tags
2. Uncompress it into pvAlert folder
3. Run install_pvAlert_manual.sh


## Configuration :
Expand Down
11 changes: 11 additions & 0 deletions install_pvAlert_manual.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

python3 -m venv ../pvAlert

source bin/activate

pip install -r requirements.txt

deactivate


File renamed without changes.

0 comments on commit 2ca4eeb

Please sign in to comment.