Skip to content
This repository has been archived by the owner on May 25, 2023. It is now read-only.

alkihis/questionit.api-v2

Repository files navigation

questionit.api

QuestionIt Logo

API service for QuestionIt.space

This is public API of QuestionIt.space. Please see bootstrap to access all projects.

Tech stack

  • Nest.js 8
  • TypeORM 0.2
  • PostgreSQL 14
  • Redis 6
  • twitter-api-v2 1.11
  • Node 14+

Structure

  • src: TypeScript code root
    • app: Main application module
    • bootstraps: Files that can start the application (or a part of it)
    • database: Database-related files (entities, tyes, migrations)
      • entities: TypeORM entities
      • enums: Enum types related to entities
      • interfaces: Interfaces related to entities
      • migrations: TypeORM migration files
    • features: Modules that provides REST-ful API (with Nest controllers). Each directory refers to a specific part of the public application API.
    • shared: All the things that can be imported by the main application or its services, without being directly related to a database entity
      • config: App config
      • filters: Nest filters
      • guards: Nest guards applicables to controllers
      • logger: Loggers applicables to Nest or TypeORM
      • managers: Worker management or request user wrapping
      • middlewares: Nest middlewares
      • modules: Global module where each of its services can be imported anywhere. Helps shared things like notifications, errors or Twitter handling to be shared across the app.
      • pipes: Nest validation pipes
      • queues: Bull-powered queues; only used to handle CRON jobs
      • strategies: Authentication strategies
      • utils: Shared utils about everything: string, regex, query parsing and more
      • workers: Files that should run in a dedicated worker_thread
    • static: serve-static configuration
  • data: JSON-files meant to store basic data
  • uploads: Structure for POST file upload and file processing

Run

See bootstrap to learn how service can be started.

Endpoint documentation

For endpoint documentation, see API docs.

About

v2 version of QuestionIt.space API built with Nest.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages