Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T02:32:11.000Z (over 3 years ago)
- Last Synced: 2024-10-07T16:05:45.586Z (about 1 month 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: 2
- 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)
![Screenshot of main view](https://i.imgur.com/gK9f6Mw.png)
# 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