https://github.com/scientanl/brandr-app
Brandr application website
https://github.com/scientanl/brandr-app
Last synced: 9 months ago
JSON representation
Brandr application website
- Host: GitHub
- URL: https://github.com/scientanl/brandr-app
- Owner: ScientaNL
- Created: 2019-04-04T08:42:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-10T15:00:58.000Z (over 2 years ago)
- Last Synced: 2025-09-05T04:38:53.829Z (9 months ago)
- Language: TypeScript
- Size: 476 KB
- Stars: 1
- Watchers: 5
- Forks: 3
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BRANDr.app website
## Starting the BRANDr docker-compose stack
The `docker-compose` stack of BRANDr consists of two containers: *brandr-api* and *brandr-app*.
Because you can use the API without the website, and not the other way around, the `docker-compose.yml` of the website contains the volumes of the API for development purposes. This enables a developer to deploy the website and API in one command. However, feel free to fire up the two projects separately.
Fire up the dev stack using docker-compose:
```bash
docker-compose -f .\docker-compose.yml -f ..\brandr-api\docker-compose.yml -f .\docker-compose.dev.yml up -d --force-recreate --remove-orphans
```
Or deploy the full stack with a the combined compose file:
```bash
docker-compose -f docker-compose.full.yml -d --force-recreate --remove-orphans
```