admin-api | ||
admin-app | ||
.env.example-linux | ||
.env.example-windows | ||
.gitignore | ||
docker-compose.yml | ||
README.md |
This repository creates the admin user interface which serves the following purposes:
- Enable contributors to login and manage their profile.
- Enable contributors to spin up both a dev server to test their fork and a code server to edit their fork.
- Enable contributors to easily access both of these interfaces.
Example Linux .env file
DOCKER_SOCK_PIPE=/var/run/docker.sock
Example Windows .env file
DOCKER_SOCK_PIPE=//./pipe/docker_engine
Create a .env file
Copy the Windows example .env file.
copy .env.example-windows .env
Copy the Linux example .env file.
cp .env.example-linux .env
Use docker compose to bring up admin app
Using docker compose:
docker compose --env-file .env up --build -d
Use docker compose to bring down admin app
Using docker compose:
docker compose down