https://github.com/felbinger/wpm
Wireguard Peer Manager
https://github.com/felbinger/wpm
Last synced: 3 months ago
JSON representation
Wireguard Peer Manager
- Host: GitHub
- URL: https://github.com/felbinger/wpm
- Owner: felbinger
- Archived: true
- Created: 2022-06-09T21:31:09.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T16:35:30.000Z (8 months ago)
- Last Synced: 2025-03-06T06:15:52.312Z (4 months ago)
- Language: Python
- Size: 309 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wireguard Peer Manager
## Installation
First you need to install [docker](https://docs.docker.com/engine/install/)
and [docker-compose](https://docs.docker.com/compose/install/)
After you have started the services (`docker-compose up -d`),
you can collect the static files and create a superuser account:
```bash
# collect static files
docker-compose exec -u0 wpm /bin/sh -c 'python manage.py collectstatic --no-input'# create superuser
docker-compose exec wpm /bin/sh -c 'python manage.py createsuperuser --username=admin [email protected]'
```Afterwards you can access the application: [http://localhost:8080](http://localhost:8080)
You can change the port inside the [`docker-compose.yml`](./docker-compose.yml#L29)