mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-08-14 04:22:54 +02:00
22 lines
284 B
Makefile
22 lines
284 B
Makefile
export FASTIFY_PRETTY_LOGS := "true"
|
|
export FASTIFY_PORT := "3001"
|
|
export FASTIFY_LOG_LEVEL := "info"
|
|
|
|
auth:
|
|
fastify start src/api/auth/default.js
|
|
|
|
user:
|
|
fastify start src/api/user/default.js
|
|
|
|
apis:
|
|
node dev.js
|
|
|
|
front:
|
|
vite
|
|
|
|
front-build:
|
|
vite build
|
|
|
|
front-preview:
|
|
vite preview
|