···11-# Created by https://www.toptal.com/developers/gitignore/api/go
22-# Edit at https://www.toptal.com/developers/gitignore?templates=go
11+# Created by https://www.toptal.com/developers/gitignore/api/go,node
22+# Edit at https://www.toptal.com/developers/gitignore?templates=go,node
3344### Go ###
55# If you prefer the allow list template instead of the deny list, see community template:
···2424# Go workspace file
2525go.work
26262727-# End of https://www.toptal.com/developers/gitignore/api/go
2727+### Node ###
2828+# Logs
2929+logs
3030+*.log
3131+npm-debug.log*
3232+yarn-debug.log*
3333+yarn-error.log*
3434+lerna-debug.log*
3535+.pnpm-debug.log*
3636+3737+# Diagnostic reports (https://nodejs.org/api/report.html)
3838+report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
3939+4040+# Runtime data
4141+pids
4242+*.pid
4343+*.seed
4444+*.pid.lock
4545+4646+# Directory for instrumented libs generated by jscoverage/JSCover
4747+lib-cov
4848+4949+# Coverage directory used by tools like istanbul
5050+coverage
5151+*.lcov
5252+5353+# nyc test coverage
5454+.nyc_output
5555+5656+# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
5757+.grunt
5858+5959+# Bower dependency directory (https://bower.io/)
6060+bower_components
6161+6262+# node-waf configuration
6363+.lock-wscript
6464+6565+# Compiled binary addons (https://nodejs.org/api/addons.html)
6666+build/Release
6767+6868+# Dependency directories
6969+node_modules/
7070+jspm_packages/
7171+7272+# Snowpack dependency directory (https://snowpack.dev/)
7373+web_modules/
7474+7575+# TypeScript cache
7676+*.tsbuildinfo
7777+7878+# Optional npm cache directory
7979+.npm
8080+8181+# Optional eslint cache
8282+.eslintcache
8383+8484+# Optional stylelint cache
8585+.stylelintcache
8686+8787+# Microbundle cache
8888+.rpt2_cache/
8989+.rts2_cache_cjs/
9090+.rts2_cache_es/
9191+.rts2_cache_umd/
9292+9393+# Optional REPL history
9494+.node_repl_history
9595+9696+# Output of 'npm pack'
9797+*.tgz
9898+9999+# Yarn Integrity file
100100+.yarn-integrity
101101+102102+# dotenv environment variable files
28103.env
104104+.env.development.local
105105+.env.test.local
106106+.env.production.local
107107+.env.local
108108+109109+# parcel-bundler cache (https://parceljs.org/)
110110+.cache
111111+.parcel-cache
112112+113113+# Next.js build output
114114+.next
115115+out
116116+117117+# Nuxt.js build / generate output
118118+.nuxt
119119+dist
120120+121121+# Gatsby files
122122+.cache/
123123+# Comment in the public line in if your project uses Gatsby and not Next.js
124124+# https://nextjs.org/blog/next-9-1#public-directory-support
125125+# public
126126+127127+# vuepress build output
128128+.vuepress/dist
129129+130130+# vuepress v2.x temp and cache directory
131131+.temp
132132+133133+# Docusaurus cache and generated files
134134+.docusaurus
135135+136136+# Serverless directories
137137+.serverless/
138138+139139+# FuseBox cache
140140+.fusebox/
141141+142142+# DynamoDB Local files
143143+.dynamodb/
144144+145145+# TernJS port file
146146+.tern-port
147147+148148+# Stores VSCode versions used for testing VSCode extensions
149149+.vscode-test
150150+151151+# yarn v2
152152+.yarn/cache
153153+.yarn/unplugged
154154+.yarn/build-state.yml
155155+.yarn/install-state.gz
156156+.pnp.*
157157+158158+### Node Patch ###
159159+# Serverless Webpack directories
160160+.webpack/
161161+162162+# Optional stylelint cache
163163+164164+# SvelteKit build / generate output
165165+.svelte-kit
166166+167167+# End of https://www.toptal.com/developers/gitignore/api/go,node
168168+bin
+5-1
Justfile
···11dev:
22- go run main.go
22+ go run server/main.go
3344+build:
55+ go build -o bin/server server/main.go
4677+updateschema:
88+ curl -fsSL https://git.inpt.fr/churros/churros/-/raw/main/packages/db/prisma/schema.prisma -o schema.prisma