1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/kita
dependabot[bot] 24b591bf8c
Bump @fastify/multipart from 8.2.0 to 8.3.1 in /kita
Bumps [@fastify/multipart](https://github.com/fastify/fastify-multipart) from 8.2.0 to 8.3.1.
- [Release notes](https://github.com/fastify/fastify-multipart/releases)
- [Commits](https://github.com/fastify/fastify-multipart/compare/v8.2.0...v8.3.1)

---
updated-dependencies:
- dependency-name: "@fastify/multipart"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-23 18:05:01 +00:00
..
src kita 2024-04-20 01:21:32 +09:00
test kita 2024-04-20 01:21:32 +09:00
biome.json kita 2024-04-20 01:21:32 +09:00
package.json Bump @fastify/multipart from 8.2.0 to 8.3.1 in /kita 2025-01-23 18:05:01 +00:00
pnpm-lock.yaml Bump @fastify/multipart from 8.2.0 to 8.3.1 in /kita 2025-01-23 18:05:01 +00:00
README.md kita 2024-04-20 01:21:32 +09:00
tsconfig.build.json kita 2024-04-20 01:21:32 +09:00
tsconfig.json kita 2024-04-20 01:21:32 +09:00

kita

Installing the project

Run the following command to install the project:

npm install

Running in development mode

Run the following command to start the server in development mode:

npm run dev

You can now open your browser and navigate to http://localhost:1227.

Building for production

Run the following command to build the project:

npm run build

Run the following command to start the server in production mode:

npm start

You can now open your browser and navigate to http://localhost:1227.

Running tests

You can run the tests using the following command:

npm test

Environment variables

Environment variables are loaded from a .env file in the root of the project. These are the available variables:

# Port and host for the server
PORT=1227
HOST=0.0.0.0

Linting and Formatting

You can run the following commands to lint and format your code:

# Formats your code
npm run format

# Lints your code
npm run lint

# Lints and fixes your code
npm run lint:fix

# Lints your code in CI mode
npm run lint:ci