Wrote an Webserver to spit out a random planet with a go backend and an astro front end

This commit is contained in:
2025-06-01 09:42:00 +02:00
commit 6fede91173
12 changed files with 5140 additions and 0 deletions

11
astro-frontend/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}