https://github.com/artizirk/wgadmin
WireGuard VPN Administration web interface for complex networks
https://github.com/artizirk/wgadmin
flask mesh mesh-networks python vpn vpn-manager wg-dynamic wireguard wireguard-dashboard wireguard-vpn
Last synced: 10 months ago
JSON representation
WireGuard VPN Administration web interface for complex networks
- Host: GitHub
- URL: https://github.com/artizirk/wgadmin
- Owner: artizirk
- License: mit
- Created: 2019-05-18T14:44:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T02:32:11.000Z (over 5 years ago)
- Last Synced: 2025-04-04T09:11:14.286Z (about 1 year ago)
- Topics: flask, mesh, mesh-networks, python, vpn, vpn-manager, wg-dynamic, wireguard, wireguard-dashboard, wireguard-vpn
- Language: JavaScript
- Homepage:
- Size: 50.8 KB
- Stars: 22
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wireguard admin interface
Plan is to provide a central config server with web ui and a gateway agent.
Not yet ready.
[Screenshots](https://github.com/artizirk/wireguard-admin/wiki)

# Development setup
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt -r dev-requirements.txt
## Initialize database
source venv/bin/activate
flask init-db
## Run dev server
source venv/bin/activate
export FLASK_ENV=development
flask run
## Run unittests
source venv/bin/activate
python -m unittest discover tests
## Update requirements.txt
source venv/bin/activate
pip-compile --upgrade setup.py
pip-compile --upgrade dev-requirements.in
# Apply updates to current venv
pip-sync dev-requirements.txt requirements.txt