Replaced the gin framwwork with echo
This commit is contained in:
10
justfile
10
justfile
@@ -1,3 +1,5 @@
|
||||
set dotenv-load
|
||||
|
||||
# Build the application
|
||||
all: build test
|
||||
|
||||
@@ -16,8 +18,12 @@ templ-install:
|
||||
fi; \
|
||||
fi
|
||||
|
||||
tailwind:
|
||||
@if [ ! -f tailwindcss ]; then curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-macos-x64 -o tailwindcss; fi
|
||||
tailwind-macos:
|
||||
@if [ ! -f tailwindcss ]; then curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-macos-arm64 -o tailwindcss; fi
|
||||
@chmod +x tailwindcss
|
||||
|
||||
tailwind-linux:
|
||||
@if [ ! -f tailwindcss ]; then curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 -o tailwindcss; fi
|
||||
@chmod +x tailwindcss
|
||||
|
||||
build:
|
||||
|
||||
Reference in New Issue
Block a user