This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
group-1-db23/docs/wiki.md
2024-01-02 15:53:22 +01:00

25 lines
562 B
Markdown
Executable File

# Setup Of Virtual Python dev env
First open the terminal and make sure to be in the root directory.
All steps assume one is in the root folder.
## Create Virtual environment
```
python3 -m venv db23-project-venv
```
## Activating the virtual environment
```
source db23/bin/activate
```
#### When in the environment ``db23-project`` just install all needed packages.
```
pip3 install pkg_name
```
## Getting back out
```
deactivate
```
# List of used packages
See ``requirements.txt``
# Setting up postgres
# Setting up pgadmin as container serverd by nginx