Skip to content

Commit

Permalink
Merge pull request #146 from arnoldknott/stage
Browse files Browse the repository at this point in the history
Stage
  • Loading branch information
arnoldknott authored Dec 6, 2024
2 parents 0b13d44 + 7527a66 commit 3a987c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
7 changes: 0 additions & 7 deletions backendAPI/src/core/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@

# print("=== cache.py started ===")

# print("=== config.REDIS_HOST ===")
# print(config.REDIS_HOST)
# print("=== config.REDIS_PORT ===")
# print(config.REDIS_PORT)
# print("=== config.REDIS_SESSION_DB ===")
# print(config.REDIS_SESSION_DB)

redis_session_client = redis.Redis(
host=config.REDIS_HOST,
port=config.REDIS_PORT,
Expand Down
9 changes: 1 addition & 8 deletions frontend_svelte/src/components/Chat.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,7 @@
let { connection, children }: { connection: SocketioConnection; children: Snippet } = $props();
const socketio = new SocketIO(connection);
// let socketio = $state()
// $effect(() => {
// console.log('Chat.svelte - getContext - backend configuration')
// console.log(getContext('backendAPIConfiguration'))
// // console.log('Chat.svelte - $page.data.backendAPIConfiguration')
// // console.log($page.data.backendAPIConfiguration)
// socketio = new SocketIO(connection);
// })
let new_message = $state('');
let old_messages: string[] = $state([]);
Expand Down

0 comments on commit 3a987c7

Please sign in to comment.