fixed server:start and editted README

This commit is contained in:
John Yeo
2025-01-23 10:49:33 +00:00
parent ab5e8649ee
commit 5a11a1a013
3 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,9 @@
# Autumn
<!-- Use github hero -->
![Autumn](assets/github_hero.png)
[Autumn](https://useautumn.com) is an open-source pricing & billing platform. It is an abstraction layer between Stripe and your application, and allows you to implement pricing in just a few minutes. No more dealing with webhooks, upgrades / downgrades, cancellations or payment fails. Autumn handles it all for you.
**Docs**: https://docs.useautumn.com

BIN
assets/github_hero.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 KiB

View File

@@ -9,10 +9,10 @@
"start": "tsx src/index.ts",
"queue:dev": "tsx watch src/queue.ts",
"build": "tsc -b",
"prod": "tsc -b && tsc-alias && node dist/index.js",
"prod": "tsc -b && tsc-alias && node dist/src/index.js",
"test": "tsx test.ts",
"prod:build": "tsc -b && tsc-alias",
"prod:start": "node dist/index.js",
"prod:start": "node dist/src/index.js",
"cron": "tsx src/cron.ts",
"clean": "tsx src/clean.ts",
"invoiceCron": "tsx src/invoiceCron.ts",