Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/felbinger/wpm

Wireguard Peer Manager
https://github.com/felbinger/wpm

Last synced: 2 months ago
JSON representation

Wireguard Peer Manager

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)