remove unnecessary auth

This commit is contained in:
Gabriel Augendre 2024-09-16 17:57:00 +02:00
parent e99f33d84d
commit b3badc94ff
4 changed files with 1 additions and 4 deletions

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/temp" />

View file

@ -10,7 +10,6 @@ COPY public ./public
COPY src ./src
COPY .git ./.git
ARG REACT_APP_TCL_AUTH
RUN export REACT_APP_VERSION=$(git describe --always) && \
export REACT_APP_DATE=$(date +"%Y-%m-%d %H:%M:%S") && \
yarn build

View file

@ -2,8 +2,6 @@ services:
app:
build:
context: .
args:
REACT_APP_TCL_AUTH: changeme
restart: always
networks:
- frontend

View file

@ -89,7 +89,6 @@ class App extends React.Component<{}, IAppState> {
private refresh() {
const headers = new Headers();
headers.set("Authorization", `Basic ${process.env.REACT_APP_TCL_AUTH}`);
const tclPromise = http<ITclFilteredApi>(`https://tcl.augendre.info/tcl/stop/${this.monitoredTclStopId}`, {
method: "GET",
headers: headers