summaryrefslogtreecommitdiff
path: root/shrine
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-02-27 15:27:39 +0530
committerBobby <[email protected]>2026-02-27 15:27:39 +0530
commitf2c9b615129c4842bdaa9bdc7b33f99e873b772e (patch)
tree0298600bc6fc53bfe8a7db7a911dd5bfbca63019 /shrine
parente81976e219ae274c4cd8511e86d928b232de4ecf (diff)
downloadpagoda-f2c9b615129c4842bdaa9bdc7b33f99e873b772e.tar.xz
pagoda-f2c9b615129c4842bdaa9bdc7b33f99e873b772e.zip
feat(garden): initialize Solid.js project with basic structure and routing
- Added package.json with dependencies for Solid.js and Vite. - Created main application component (App) with layout and suspense handling. - Implemented Layout component with navigation and sidebar sections. - Added NavSection and Sidebar components for structured navigation. - Configured API URL based on environment. - Created 404 error page for handling non-existent routes. - Set up global styles and theme variables for consistent design. - Established routing with lazy loading for the 404 page. - Added TypeScript configuration for Solid.js. - Configured Vite for development and production builds. - Created Makefile for building and running the Go application in the shrine directory. - Added .gitignore for ignoring build artifacts and environment files.
Diffstat (limited to 'shrine')
-rw-r--r--shrine/.gitignore5
-rw-r--r--shrine/Makefile10
2 files changed, 15 insertions, 0 deletions
diff --git a/shrine/.gitignore b/shrine/.gitignore
new file mode 100644
index 0000000..5c50213
--- /dev/null
+++ b/shrine/.gitignore
@@ -0,0 +1,5 @@
+bin/
+.env
+.env.*
+vendor/
+tmp/ \ No newline at end of file
diff --git a/shrine/Makefile b/shrine/Makefile
new file mode 100644
index 0000000..eec53ec
--- /dev/null
+++ b/shrine/Makefile
@@ -0,0 +1,10 @@
+.PHONY: build run clean
+
+build:
+ go build -o bin/shrine .
+
+run:
+ go run .
+
+clean:
+ rm -rf bin/ \ No newline at end of file