add deploy instructions

This commit is contained in:
2021-07-24 21:16:00 +08:00
parent a4b7536fe0
commit 8a92cfc7d7
3 changed files with 20 additions and 2 deletions

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
# neo-double-hearts
```bash
git clone https://git.sduonline.cn/juzheng/neo-double-hearts
cd neo-double-hearts/
cp .env.example .env
vim .env # Fill in your config
npm i typescript -g
npm i
# Compile & Run
npm run build
npm start
# Or:
node --require ts-node/register src/index.ts
```