reorder following twitter website

This commit is contained in:
Mylloon 2022-08-09 00:35:14 +02:00
parent c8db7f6436
commit a1effc03c7
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
TOKEN=
TOKEN_SECRET=
CONSUMER_KEY= CONSUMER_KEY=
CONSUMER_SECRET= CONSUMER_SECRET=
BEARER_TOKEN= BEARER_TOKEN=
TOKEN=
TOKEN_SECRET=
PSEUDO= PSEUDO=

View file

@ -39,11 +39,11 @@ docker build https://git.kennel.ml/Anri/feurBot.git#main --tag feurbot:main && \
docker run -d \ docker run -d \
--name="feurBot" \ --name="feurBot" \
feurbot:main \ feurbot:main \
--TOKEN="" \
--TOKEN_SECRET="" \
--CONSUMER_KEY="" \ --CONSUMER_KEY="" \
--CONSUMER_SECRET="" \ --CONSUMER_SECRET="" \
--BEARER_TOKEN="" \ --BEARER_TOKEN="" \
--TOKEN="" \
--TOKEN_SECRET="" \
--PSEUDOS="" --PSEUDOS=""
``` ```
Ou avec un `docker-compose.yml` : Ou avec un `docker-compose.yml` :
@ -54,11 +54,11 @@ services:
build: https://git.kennel.ml/Anri/feurBot.git#main build: https://git.kennel.ml/Anri/feurBot.git#main
container_name: feurBot container_name: feurBot
environment: environment:
- TOKEN=
- TOKEN_SECRET=
- CONSUMER_KEY= - CONSUMER_KEY=
- CONSUMER_SECRET= - CONSUMER_SECRET=
- BEARER_TOKEN= - BEARER_TOKEN=
- TOKEN=
- TOKEN_SECRET=
- PSEUDOS= - PSEUDOS=
restart: unless-stopped restart: unless-stopped
``` ```