Refactored project ready for server.
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
parent
5a115374b4
commit
dd67fc967a
36 changed files with 1187 additions and 1003 deletions
|
@ -6,4 +6,4 @@ import tailwind from "@astrojs/tailwind";
|
|||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [vue(), tailwind()]
|
||||
});
|
||||
});
|
|
@ -11,14 +11,15 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/tailwind": "^5.0.0",
|
||||
"@astrojs/vue": "3.0.0",
|
||||
"astro": "^3.1.1",
|
||||
"tailwindcss": "^3.0.24",
|
||||
"vue": "^3.3.4"
|
||||
"@astrojs/deno": "^5.0.1",
|
||||
"@astrojs/tailwind": "^5.1.0",
|
||||
"@astrojs/vue": "4.0.8",
|
||||
"astro": "^4.3.7",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"vue": "^3.4.19"
|
||||
},
|
||||
"devDependencies": {
|
||||
"sass": "1.68.0",
|
||||
"typescript": "^5.2.2"
|
||||
"sass": "1.70.0",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
}
|
2151
pnpm-lock.yaml → fe/pnpm-lock.yaml
generated
2151
pnpm-lock.yaml → fe/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Before ![]() (image error) Size: 74 KiB After ![]() (image error) Size: 74 KiB ![]() ![]() |
Before (image error) Size: 873 B After (image error) Size: 873 B |
Before (image error) Size: 312 B After (image error) Size: 312 B |
Before (image error) Size: 332 B After (image error) Size: 332 B |
Before ![]() (image error) Size: 171 KiB After ![]() (image error) Size: 171 KiB ![]() ![]() |
1
fe/src/env.d.ts
vendored
Normal file
1
fe/src/env.d.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/// <reference types="astro/client" />
|
3
go.work
Normal file
3
go.work
Normal file
|
@ -0,0 +1,3 @@
|
|||
go 1.21.6
|
||||
|
||||
use ./server
|
12
justfile
Normal file
12
justfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
build-fe:
|
||||
cd ./fe && pnpm build && cd ..
|
||||
|
||||
build-server:
|
||||
go build ./server
|
||||
|
||||
build-all:
|
||||
cd ./fe && pnpm build && cp -r ./dist .. && cd ..
|
||||
go build ./server
|
||||
|
||||
git:
|
||||
git add -A && git commit -sS && git push
|
3
server/go.mod
Normal file
3
server/go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module git.ludoviko.ch/lucxjo/friends-best
|
||||
|
||||
go 1.21.6
|
3
server/main.go
Normal file
3
server/main.go
Normal file
|
@ -0,0 +1,3 @@
|
|||
package main
|
||||
|
||||
func main() {}
|
0
src/env.d.ts → server/src/env.d.ts
vendored
0
src/env.d.ts → server/src/env.d.ts
vendored
Loading…
Add table
Reference in a new issue