From b0d642f52fb25bf1e919d949c79b68ffb7f24b0c Mon Sep 17 00:00:00 2001 From: Samuel Bodin <1637651+bodinsamuel@users.noreply.github.com> Date: Tue, 11 Jul 2023 17:49:44 +0200 Subject: [PATCH] fix(rules): introduce storage type to differentiate from hosting --- TODO.todo | 3 +++ src/common/techs.ts | 5 ++--- src/types/techs.ts | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/TODO.todo b/TODO.todo index 2acf7833..eb534261 100644 --- a/TODO.todo +++ b/TODO.todo @@ -94,6 +94,7 @@ Global: - Kafka - Electron - Ansible + - certbot GCP: ✔ Big Query @done(23-06-29 14:41) @@ -152,3 +153,5 @@ DB: ✔ Snowflake @done(23-07-04 15:13) - Supabase - Neo4J + - typesense + - qdrant diff --git a/src/common/techs.ts b/src/common/techs.ts index e54c1143..16ef6c75 100644 --- a/src/common/techs.ts +++ b/src/common/techs.ts @@ -7,7 +7,7 @@ export const list: TechItem[] = [ { key: 'appveyor', name: 'AppVeyor', type: 'ci' }, { key: 'auth0', name: 'Auth0', type: 'sass' }, { key: 'aws', name: 'AWS', type: 'hosting' }, - { key: 'aws.s3', name: 'S3', type: 'hosting' }, + { key: 'aws.s3', name: 'S3', type: 'storage' }, { key: 'azure', name: 'Azure', type: 'hosting' }, { key: 'azure.ci', name: 'AzureCi', type: 'ci' }, { key: 'bash', name: 'Bash', type: 'language' }, @@ -22,7 +22,6 @@ export const list: TechItem[] = [ { key: 'cockroachdb', name: 'CockroachDB', type: 'db' }, { key: 'cloudflare', name: 'Cloudflare', type: 'hosting' }, { key: 'codesandboxci', name: 'CodesandboxCI', type: 'ci' }, - { key: 'couchbase', name: 'Couchbase', type: 'db' }, { key: 'cplusplus', name: 'C++', type: 'language' }, { key: 'csharp', name: 'C#', type: 'language' }, { key: 'css', name: 'CSS', type: 'language' }, @@ -50,7 +49,7 @@ export const list: TechItem[] = [ { key: 'gcp.cloudrun', name: 'Cloud Run', type: 'hosting' }, { key: 'gcp.pubsub', name: 'PubSub', type: 'messaging' }, { key: 'gcp.gce', name: 'Compute Engine', type: 'hosting' }, - { key: 'gcp.gcs', name: 'Cloud Storage', type: 'hosting' }, + { key: 'gcp.gcs', name: 'Cloud Storage', type: 'storage' }, { key: 'gcp.gke', name: 'GKE', type: 'hosting' }, { key: 'gcp.sql', name: 'Cloud SQL', type: 'db' }, { key: 'gitlab', name: 'Gitlab', type: 'tool' }, diff --git a/src/types/techs.ts b/src/types/techs.ts index 6c2ef4c6..5138d778 100644 --- a/src/types/techs.ts +++ b/src/types/techs.ts @@ -7,6 +7,7 @@ export type TechType = | 'messaging' | 'network' | 'sass' + | 'storage' | 'tool'; export type AllowedKeys =