mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 18:06:07 +01:00
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
const env = require('dotenv').config().parsed || {};
|
|
|
|
module.exports = {
|
|
apps : [
|
|
{
|
|
name: "indiekit",
|
|
script: "npx indiekit serve --port 8088",
|
|
watch: false,
|
|
env,
|
|
}
|
|
]
|
|
};
|