bozo-backend/README.md

41 lines
762 B
Markdown
Raw Permalink Normal View History

2023-06-08 16:49:21 -04:00
# Placeholder Name
A plateform (http server) to manage esport team
## Installation
1. Download the project
``` bash
git clone https://git.chauvet.pro/bozogang
```
2. Go in
``` bash
cd bozogang
```
3. Build docker image
``` bash
docker build -t zeolak .
```
2023-06-08 16:51:23 -04:00
4. Edit the docker-compose.yml\
2023-06-08 16:50:54 -04:00
`port`: change the port to what port do you want\
2023-06-08 16:49:21 -04:00
`path/to/config`: change to the location of your Placeholder Name config
5. Launch the docker
``` bash
docker-compose up -d
```
2023-06-09 09:22:50 -04:00
6. Edit the config\
`secret`: change to a random string\
`database`: setup the database acces
2023-06-08 16:49:21 -04:00
7. Relauch the docker
``` bash
docker-compose up -d
```
## Update
1. Update the docker image
``` bash
docker build -t zeolak --no-cache .
```
2. Relaunch the docker
``` bash
docker-compose up -d
2023-06-09 09:22:50 -04:00
```