From aaefd1b52adb27f142e2d961959d856ca713e0df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sof=C3=ADa=20Aritz?= Date: Sat, 15 Jun 2024 10:16:01 +0200 Subject: [PATCH] checkpoint 5 --- identity-api/.editorconfig | 10 ++++++++++ identity-api/.gitattributes | 4 ++++ identity-api/README.md | 1 + identity-api/package.json | 1 + 4 files changed, 16 insertions(+) create mode 100644 identity-api/.editorconfig create mode 100644 identity-api/.gitattributes create mode 100644 identity-api/README.md diff --git a/identity-api/.editorconfig b/identity-api/.editorconfig new file mode 100644 index 0000000..1ed453a --- /dev/null +++ b/identity-api/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.{js,json,yml}] +charset = utf-8 +indent_style = space +indent_size = 2 diff --git a/identity-api/.gitattributes b/identity-api/.gitattributes new file mode 100644 index 0000000..af3ad12 --- /dev/null +++ b/identity-api/.gitattributes @@ -0,0 +1,4 @@ +/.yarn/** linguist-vendored +/.yarn/releases/* binary +/.yarn/plugins/**/* binary +/.pnp.* binary linguist-generated diff --git a/identity-api/README.md b/identity-api/README.md new file mode 100644 index 0000000..ae12c0c --- /dev/null +++ b/identity-api/README.md @@ -0,0 +1 @@ +# identity-api diff --git a/identity-api/package.json b/identity-api/package.json index adea028..9215210 100644 --- a/identity-api/package.json +++ b/identity-api/package.json @@ -5,6 +5,7 @@ "license": "MIT", "private": true, "type": "module", + "packageManager": "yarn@4.3.0", "dependencies": { "fastify": "^4.27.0", "jose": "^5.4.0",