Skip to content

Instantly share code, notes, and snippets.

View jakobhviid's full-sized avatar

Jakob Hviid, PhD jakobhviid

View GitHub Profile
#!/bin/bash
set -euo pipefail
echo "🔍 Detecting architecture..."
ARCH=$(uname -m)
case "$ARCH" in
x86_64) ARCH_NAME="amd64" ;;
aarch64) ARCH_NAME="arm64" ;;
*) echo "❌ Unsupported architecture: $ARCH"; exit 1 ;;
esac
/*
This is a
multiline comment.
*/
-- this is a single line comment.
-- creating the initial accounts table
CREATE TABLE account(
user_id serial PRIMARY KEY,