9 lines
281 B
JavaScript
9 lines
281 B
JavaScript
|
const { join } = require("path");
|
||
|
|
||
|
const runtimePackagesDirectory = "./runtime_apps";
|
||
|
|
||
|
module.exports.runtimePackagesDirectory = runtimePackagesDirectory;
|
||
|
|
||
|
module.exports.getRuntimePackageDirectory = (appName, versionId) =>
|
||
|
join(runtimePackagesDirectory, appName, versionId);
|