Skip to content

Commit

Permalink
chore: python environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Skipper-116 committed Feb 6, 2025
1 parent 6fc8c69 commit 39908ca
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
27 changes: 20 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@
- Docker and Docker Compose
- dotenv Python package

To install Python Dotenv package run the following command:

```bash
pip3 install python-dotenv
```

---

## Setup Instructions
Expand All @@ -59,7 +53,25 @@ cd emdeck

### 2. Deploy the System

Run the Python deployment script:
Setup the python environment by running the following command:

```bash
python3 -m venv emdeck_venv
```

Activate the python environment by running the following command:

```bash
source emdeck_venv/bin/activate
```

Install the required python packages by running the following command:

```bash
pip3 install -r requirements.txt
```

Run the deployment script:

```bash
./scripts/start.sh
Expand Down Expand Up @@ -130,6 +142,7 @@ eMDeck/
├── .gitignore
├── main.py
├── README.md
├── requirements.txt
├── SECURITY.md
```

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python-dotenv==1.0.1

0 comments on commit 39908ca

Please sign in to comment.