mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-28 18:36:25 +00:00
Add air config
Remove unused params
This commit is contained in:
parent
109386bf51
commit
7b5dbb1614
46
.air.toml
Normal file
46
.air.toml
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
root = "."
|
||||||
|
testdata_dir = "testdata"
|
||||||
|
tmp_dir = "tmp"
|
||||||
|
|
||||||
|
[build]
|
||||||
|
args_bin = ["run", "-host=127.0.0.1:8080"]
|
||||||
|
bin = "./tmp/main"
|
||||||
|
cmd = "go build -o ./tmp/main ."
|
||||||
|
delay = 1000
|
||||||
|
exclude_dir = ["assets", "tmp", "vendor", "testdata", "front/node_modules", "front/dist"]
|
||||||
|
exclude_file = []
|
||||||
|
exclude_regex = ["_test.go"]
|
||||||
|
exclude_unchanged = false
|
||||||
|
follow_symlink = false
|
||||||
|
full_bin = ""
|
||||||
|
include_dir = ["front/src"]
|
||||||
|
include_ext = ["go", "tpl", "tmpl", "html", "js", "svelte", "scss"]
|
||||||
|
include_file = []
|
||||||
|
kill_delay = "0s"
|
||||||
|
log = "build-errors.log"
|
||||||
|
poll = false
|
||||||
|
poll_interval = 0
|
||||||
|
post_cmd = []
|
||||||
|
pre_cmd = ["go generate front/embed.go"]
|
||||||
|
rerun = false
|
||||||
|
rerun_delay = 500
|
||||||
|
send_interrupt = false
|
||||||
|
stop_on_error = false
|
||||||
|
|
||||||
|
[color]
|
||||||
|
app = ""
|
||||||
|
build = "yellow"
|
||||||
|
main = "magenta"
|
||||||
|
runner = "green"
|
||||||
|
watcher = "cyan"
|
||||||
|
|
||||||
|
[log]
|
||||||
|
main_only = false
|
||||||
|
time = false
|
||||||
|
|
||||||
|
[misc]
|
||||||
|
clean_on_exit = false
|
||||||
|
|
||||||
|
[screen]
|
||||||
|
clear_on_rebuild = false
|
||||||
|
keep_scroll = true
|
|
@ -32,22 +32,22 @@ export default Items = [
|
||||||
price: -9999,
|
price: -9999,
|
||||||
labels: ["nut"],
|
labels: ["nut"],
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// name: "GwaGwa",
|
name: "GwaGwa",
|
||||||
// price: "Priceless",
|
price: "Priceless",
|
||||||
// labels: ["nut"],
|
labels: ["nut"],
|
||||||
// image: "/dab.jpg",
|
image: "/dab.jpg",
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
name: "Hogermellon",
|
name: "Hogermellon",
|
||||||
price: "1111",
|
price: "1111",
|
||||||
labels: ["fish"],
|
labels: ["fish"],
|
||||||
image: "/wathog.jpg",
|
image: "/wathog.jpg",
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// name: "Blue HOGGGGG",
|
name: "Blue HOGGGGG",
|
||||||
// price: "ARUGH",
|
price: "ARUGH",
|
||||||
// labels: ["nut", "gluten", "spicy"],
|
labels: ["nut", "gluten", "spicy"],
|
||||||
// image: "/sonichog.jpg",
|
image: "/sonichog.jpg",
|
||||||
// },
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import SmileySad from "phosphor-svelte/lib/SmileySad";
|
import SmileySad from "phosphor-svelte/lib/SmileySad";
|
||||||
|
|
||||||
export let params = {};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in a new issue