Skip to content

Commit

Permalink
fix(rules): introduce storage type to differentiate from hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Jul 11, 2023
1 parent 4445b7b commit b0d642f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions TODO.todo
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Global:
- Kafka
- Electron
- Ansible
- certbot

GCP:
✔ Big Query @done(23-06-29 14:41)
Expand Down Expand Up @@ -152,3 +153,5 @@ DB:
✔ Snowflake @done(23-07-04 15:13)
- Supabase
- Neo4J
- typesense
- qdrant
5 changes: 2 additions & 3 deletions src/common/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand All @@ -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' },
Expand Down Expand Up @@ -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' },
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export type TechType =
| 'messaging'
| 'network'
| 'sass'
| 'storage'
| 'tool';

export type AllowedKeys =
Expand Down

0 comments on commit b0d642f

Please sign in to comment.