Spaces:
Runtime error
Runtime error
File size: 215 Bytes
5f663a9 |
1 2 3 4 5 6 7 |
import path from "node:path"
// see the .env file fore more informations
export const storagePath = `${process.env.STORAGE_PATH || './sandbox'}`
export const partiesDirFilePath = path.join(storagePath, "parties")
|