15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
|
|
import { defineNitroPreset } from "nitropack/kit";
|
||
|
|
const alwaysdata = defineNitroPreset(
|
||
|
|
{
|
||
|
|
extends: "node-server",
|
||
|
|
commands: {
|
||
|
|
deploy: "rsync -rRt --info=progress2 ./ [account]@ssh-[account].alwaysdata.net:www/my-app"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: "alwaysdata",
|
||
|
|
url: import.meta.url
|
||
|
|
}
|
||
|
|
);
|
||
|
|
export default [alwaysdata];
|