Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felbinger/wpm
Wireguard Peer Manager
https://github.com/felbinger/wpm
Last synced: 2 months ago
JSON representation
Wireguard Peer Manager
- Host: GitHub
- URL: https://github.com/felbinger/wpm
- Owner: felbinger
- Created: 2022-06-09T21:31:09.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T04:58:43.000Z (5 months ago)
- Last Synced: 2024-08-08T06:38:03.948Z (5 months ago)
- Language: Python
- Size: 302 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
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)