Fix the makefile for deploy on linux.
This commit is contained in:
parent
592e1c4fd8
commit
685e227f96
2 changed files with 6 additions and 55 deletions
7
Makefile
7
Makefile
|
@ -9,7 +9,7 @@ build: build_bot
|
|||
go build .
|
||||
|
||||
build_bot:
|
||||
go build -o bot.exe .\tools\cmd\bot\bot.go
|
||||
go build -o bot$(GO_IS_STUPID_EXE) ./tools/cmd/bot/bot.go
|
||||
|
||||
site:
|
||||
go tool ssgod
|
||||
|
@ -37,6 +37,11 @@ docs:
|
|||
tailwind:
|
||||
tailwindcss --input ./static/input_style.css --output ./static/style.css --watch
|
||||
|
||||
tailwind_install:
|
||||
curl -LO https://github.com/tailwindlabs/tailwindcss/releases/download/v4.1.12/tailwindcss-linux-x64
|
||||
chmod oug+x tailwindcss-linux-x64
|
||||
sudo mv tailwindcss-linux-x64 /usr/local/bin/tailwindcss
|
||||
|
||||
dev:
|
||||
go tool air -build.stop_on_error "true"
|
||||
|
||||
|
|
|
@ -213,39 +213,15 @@
|
|||
.static {
|
||||
position: static;
|
||||
}
|
||||
.end-0 {
|
||||
inset-inline-end: calc(var(--spacing) * 0);
|
||||
}
|
||||
.top-3 {
|
||||
top: calc(var(--spacing) * 3);
|
||||
}
|
||||
.top-20 {
|
||||
top: calc(var(--spacing) * 20);
|
||||
}
|
||||
.right-0 {
|
||||
right: calc(var(--spacing) * 0);
|
||||
}
|
||||
.right-4 {
|
||||
right: calc(var(--spacing) * 4);
|
||||
}
|
||||
.bottom-4 {
|
||||
bottom: calc(var(--spacing) * 4);
|
||||
}
|
||||
.bottom-6 {
|
||||
bottom: calc(var(--spacing) * 6);
|
||||
}
|
||||
.bottom-8 {
|
||||
bottom: calc(var(--spacing) * 8);
|
||||
}
|
||||
.left-3 {
|
||||
left: calc(var(--spacing) * 3);
|
||||
}
|
||||
.left-4 {
|
||||
left: calc(var(--spacing) * 4);
|
||||
}
|
||||
.left-30 {
|
||||
left: calc(var(--spacing) * 30);
|
||||
}
|
||||
.left-40 {
|
||||
left: calc(var(--spacing) * 40);
|
||||
}
|
||||
|
@ -273,15 +249,6 @@
|
|||
.aspect-\[9\/12\]\! {
|
||||
aspect-ratio: 9/12 !important;
|
||||
}
|
||||
.aspect-\[9\/16\] {
|
||||
aspect-ratio: 9/16;
|
||||
}
|
||||
.aspect-\[9\/16\]\! {
|
||||
aspect-ratio: 9/16 !important;
|
||||
}
|
||||
.aspect-\[10\/16\]\! {
|
||||
aspect-ratio: 10/16 !important;
|
||||
}
|
||||
.aspect-square\! {
|
||||
aspect-ratio: 1 / 1 !important;
|
||||
}
|
||||
|
@ -310,9 +277,6 @@
|
|||
.max-h-20 {
|
||||
max-height: calc(var(--spacing) * 20);
|
||||
}
|
||||
.max-h-30 {
|
||||
max-height: calc(var(--spacing) * 30);
|
||||
}
|
||||
.min-h-screen {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
@ -328,9 +292,6 @@
|
|||
.max-w-20 {
|
||||
max-width: calc(var(--spacing) * 20);
|
||||
}
|
||||
.max-w-30 {
|
||||
max-width: calc(var(--spacing) * 30);
|
||||
}
|
||||
.min-w-md {
|
||||
min-width: var(--container-md);
|
||||
}
|
||||
|
@ -428,10 +389,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.border {
|
||||
border-style: var(--tw-border-style);
|
||||
border-width: 1px;
|
||||
}
|
||||
.border-1 {
|
||||
border-style: var(--tw-border-style);
|
||||
border-width: 1px;
|
||||
|
@ -478,9 +435,6 @@
|
|||
.bg-gray-50 {
|
||||
background-color: var(--color-gray-50);
|
||||
}
|
||||
.bg-gray-100 {
|
||||
background-color: var(--color-gray-100);
|
||||
}
|
||||
.bg-gray-200 {
|
||||
background-color: var(--color-gray-200);
|
||||
}
|
||||
|
@ -517,9 +471,6 @@
|
|||
.p-1 {
|
||||
padding: calc(var(--spacing) * 1);
|
||||
}
|
||||
.p-2 {
|
||||
padding: calc(var(--spacing) * 2);
|
||||
}
|
||||
.p-2\! {
|
||||
padding: calc(var(--spacing) * 2) !important;
|
||||
}
|
||||
|
@ -648,11 +599,6 @@
|
|||
background-color: var(--color-gray-900);
|
||||
}
|
||||
}
|
||||
.dark\:text-gray-50 {
|
||||
@media (prefers-color-scheme: dark) {
|
||||
color: var(--color-gray-50);
|
||||
}
|
||||
}
|
||||
}
|
||||
@layer theme;
|
||||
body {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue