feat: with updated things

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-07-07 21:23:52 +02:00
parent 36e2766bb9
commit 8ee2ca5c14
21 changed files with 386 additions and 24 deletions

View File

@@ -1,16 +1,16 @@
#!/bin/bash
tmux new-session -d -s dev
tmux new-window -n dev
# allow for user input
tmux split-window -h
# leptos
tmux send-keys -t dev "cuddle_cli x leptos:dev" C-m
tmux send-keys -t dev "cuddle x leptos:dev" C-m
tmux split-window -v
# tailwind
tmux send-keys -t dev "cuddle_cli x tailwind:watch" C-m
tmux send-keys -t dev "cuddle x tailwind:watch" C-m
# set user input to first
tmux select-pane -t 0

View File

@@ -1,3 +1,3 @@
#!/bin/bash
tmux kill-session -t dev || true
tmux kill-window -t dev || true

View File

@@ -9,4 +9,14 @@ graphql-client generate \
--schema-path src/api/graphql/schema/schema.json \
src/features/navbar_projects/graphql/queries.graphql \
--output-directory src/features/navbar_projects/gen \
--custom-scalars-module='crate::common::graphql'
--custom-scalars-module='crate::common::graphql' \
--variables-derives='Clone,Debug' \
--response-derives='Clone,Debug'
graphql-client generate \
--schema-path src/api/graphql/schema/schema.json \
src/features/dashboard_list_view/graphql/queries.graphql \
--output-directory src/features/dashboard_list_view/gen \
--custom-scalars-module='crate::common::graphql' \
--variables-derives='Clone,Debug' \
--response-derives='Clone,Debug'