setup packaging and testing

This commit is contained in:
Fedor Lyanguzov
2024-12-19 20:38:06 +03:00
parent f5354e8ff8
commit b13c53686a
5 changed files with 55 additions and 0 deletions
+15
View File
@@ -1,2 +1,17 @@
# vpn-manager
Manage WireGuard VPN peers (both server and clients)
# Development
To start developing:
```
python -m venv .venv
source .venv/Scripts/activate
pip install -e .
# work related commands here
deactivate
```
To run tests:
```
pytest
```