Merge pull request #5 from vanalmsick/dev

Fixing environmental variables not propagating #patch
This commit is contained in:
Sven 2025-10-19 18:45:59 +01:00 committed by GitHub
commit ddf726315e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 12 deletions

11
.env
View file

@ -1,11 +0,0 @@
STRAVA_CLIENT_ID=156364
STRAVA_CLIENT_SECRET=9c71494197b8974a7d24c7636b4398706906f07f
REACT_APP_BACKEND_URL=http://localhost:8000
#REACT_APP_SENTRY_DSN=https://3c277b76c35f3e111807ee103a0b8153@o4509179130544128.ingest.de.sentry.io/4509692477046864
DEBUG=true
EMAIL_HOST=smtp.1und1.de
EMAIL_PORT=25
EMAIL_HOST_USER=watson@almsick.com
EMAIL_HOST_PASSWORD=pwd4watson@almsick
EMAIL_USE_SSL=True
EMAIL_FROM=watson@almsick.com

View file

@ -23,10 +23,13 @@ Create your own competition or use a friends invitation link to join their co
### Your Personal Dashboard:
![Preview Dashboard](/docs/imgs/preview-myspace-light.png)
### Competition Dashboards:*
### Competition Dashboards:
![Preview Competition](/docs/imgs/preview-competition-both.png)
### Automatic Strava Workout Import:
![Preview Strava Import](/src-frontend/public/how_to_strava_sync.png)
<div align="center">
If you like <b>Workout Challenge</b>, consider giving it a **star** ⭐!

View file

@ -56,6 +56,13 @@ function AccordionMenu() {
{items.map((item, index) => (
<AccordionItem key={index} {...item} />
))}
<div className="border-b py-4">
<div align="center">
<p className="mb-1.5">If you like <b>Workout Challenge</b>, consider giving it a <b>star on Github</b> !</p>
<p className="mb-3">Made with in London</p>
<a href='https://ko-fi.com/vanalmsick' target='_blank'><img height='36' style={{'border': '0px', 'height': '36px'}} src='https://storage.ko-fi.com/cdn/kofi1.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
</div>
</div>
</div>
);
}