Giter Site home page Giter Site logo

Comments (6)

kasir-barati avatar kasir-barati commented on May 8, 2024 1

@vipcxj I think this is what @kamilmysliwiec mean by validating configs in the factory:

// ./path/to/anywhere/name.config.ts
import Joi from 'joi';

export default registerAs('database', () => {
  const configs = {
    host: process.env.DATABASE_HOST,
    port: process.env.DATABASE_PORT || 5432
  }
  const schema = Joi.object({
    host: Joi.string().required(),
    port: Joi.number()
  });
  schema.validate(configs);
  // sample return val -> { value: {}, error: '"host" is required' }

from config.

kasir-barati avatar kasir-barati commented on May 8, 2024 1

A quick note: I do not use joi, I used class-validator instead.
@RRGT19 please check my repo here: https://github.com/kasir-barati/you-say

For sake of simplicity I can break it here for you:

hopefully this will help you

from config.

RRGT19 avatar RRGT19 commented on May 8, 2024 1

For those who are looking at how to accomplish this using Joi or with a custom validate function, I have created an article on dev.to showing all the ways that I can think of.

Ways to validate environment configuration in a forFeature Config in NestJs

I hope it's helpful.

from config.

kamilmysliwiec avatar kamilmysliwiec commented on May 8, 2024

This is not how it's supposed to work. The validationSchema is used to validate the env variables, either predefined system vars or these loaded from the .env file. The forFeature() allows registering partial configurations which can include a custom validation mechanism (and defaults applied) by itself anyway.

from config.

vipcxj avatar vipcxj commented on May 8, 2024

This is not how it's supposed to work. The validationSchema is used to validate the env variables, either predefined system vars or these loaded from the .env file. The forFeature() allows registering partial configurations which can include a custom validation mechanism (and defaults applied) by itself anyway.

What a custom validation mechanism for partial configurations look like?
The validationSchema in root support default method, and it seems not work on partial config because we dircetly use process.env in partial configurations.

from config.

RRGT19 avatar RRGT19 commented on May 8, 2024

@kasir-barati Could you provide a more complete example of how to use Joi in the factory?

from config.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.