image-dataset
Version:
Tool to build image dataset: collect, classify, review
15 lines (14 loc) • 507 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.env = void 0;
const dotenv_1 = require("dotenv");
const populate_env_1 = __importDefault(require("populate-env"));
(0, dotenv_1.config)({ quiet: true });
exports.env = {
PORT: 8100,
CLASSIFICATION_DIFFICULTY: 1,
};
(0, populate_env_1.default)(exports.env, { mode: 'halt' });