* Translated using Weblate (Spanish) Currently translated at 100.0% (956 of 956 strings) Translation: AdventureLog/Web App Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/es/ * Added translation using Weblate (English (United States)) * Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (956 of 956 strings) Translation: AdventureLog/Web App Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/nb_NO/ * Remove empty English (United States) locale file * Translated using Weblate (Spanish) Currently translated at 100.0% (956 of 956 strings) Translation: AdventureLog/Web App Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/es/ * [BUG]Ordered Itinerary includes visits that are outside itinerary date range Fixes #746 * [BUG] Server Error (500) when trying to access the API docs Fixes #712 * [BUG] Single day Collections will think location visits are out of date range Fixes #827 * Fixes #654 * Translated using Weblate (Spanish) Currently translated at 100.0% (956 of 956 strings) Translation: AdventureLog/Web App Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/es/ * Added Slovak translations (#815) * Created sk.json * Update Navbar.svelte * Update +layout.svelte --------- Co-authored-by: Sean Morley <98704938+seanmorley15@users.noreply.github.com> * Implement code changes to enhance functionality and improve performance --------- Co-authored-by: Nikolai Eidsheim <nikolai.eidsheim@gmail.com> Co-authored-by: Sergio <garcia.sergio@me.com> Co-authored-by: fantastron27 <fantastron27@gmail.com>
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
PGHOST=''
|
|
PGDATABASE=''
|
|
PGUSER=''
|
|
PGPASSWORD=''
|
|
|
|
SECRET_KEY='pleasechangethisbecauseifyoudontitwillbeverybadandyouwillgethackedinlessthanaminuteguaranteed'
|
|
|
|
PUBLIC_URL='http://127.0.0.1:8000'
|
|
|
|
DEBUG=True
|
|
|
|
FRONTEND_URL='http://localhost:3000'
|
|
|
|
EMAIL_BACKEND='console'
|
|
|
|
# STRAVA_CLIENT_ID=''
|
|
# STRAVA_CLIENT_SECRET=''
|
|
|
|
# EMAIL_BACKEND='email'
|
|
# EMAIL_HOST='smtp.gmail.com'
|
|
# EMAIL_USE_TLS=False
|
|
# EMAIL_PORT=587
|
|
# EMAIL_USE_SSL=True
|
|
# EMAIL_HOST_USER='user'
|
|
# EMAIL_HOST_PASSWORD='password'
|
|
# DEFAULT_FROM_EMAIL='user@example.com'
|
|
|
|
# GOOGLE_MAPS_API_KEY='key'
|
|
|
|
|
|
# ------------------- #
|
|
# For Developers to start a Demo Database
|
|
# docker run --name adventurelog-development -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=admin -e POSTGRES_DB=adventurelog -p 5432:5432 -d postgis/postgis:15-3.3
|
|
|
|
# PGHOST='localhost'
|
|
# PGDATABASE='adventurelog'
|
|
# PGUSER='admin'
|
|
# PGPASSWORD='admin'
|
|
|
|
# For Sean's use:
|
|
# re-sync the development branch with main after doing squash merges
|
|
# git fetch origin && git checkout development && git reset --hard origin/main && git push origin development --force
|
|
# ------------------- # |