1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 21:09:37 +02:00

feat: update .env.example for demo database setup and add image search functionality in AdventureModal

This commit is contained in:
Sean Morley 2025-01-03 16:42:27 -05:00
parent 56244329f5
commit a4df852744
2 changed files with 13 additions and 1 deletions

View file

@ -21,3 +21,14 @@ EMAIL_BACKEND='console'
# EMAIL_HOST_USER='user'
# EMAIL_HOST_PASSWORD='password'
# DEFAULT_FROM_EMAIL='user@example.com'
# ------------------- #
# For Developers to start a Demo Database
# docker run --name postgres-admin -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=admin -e POSTGRES_DB=admin -p 5432:5432 -d postgis/postgis:15-3.3
# PGHOST='localhost'
# PGDATABASE='admin'
# PGUSER='admin'
# PGPASSWORD='admin'
# ------------------- #

View file

@ -545,6 +545,7 @@
if (adventure.is_visited && !reverseGeocodePlace?.is_visited) {
markVisited();
}
imageSearch = adventure.name;
}
</script>