RecipeSage-selfhost
RecipeSage-selfhost copied to clipboard
activate.sh script needs a second argument
Describe the issue
When running the script to activate (after contributing of course :) ), it fails.
npx ts-node --swc --project packages/backend/tsconfig.json packages/backend/src/activate [email protected]
needs to be
npx ts-node --swc --project packages/backend/tsconfig.json packages/backend/src/activate [email protected] Forever
Think the default is 'forever' which does not match what is expected in the subscription models.
Please do the following and check the boxes before filing
[ ] I have attached my docker-compose.yaml to the issue
[ ] I have attached the logs for my api
container to the issue
[X ] My issue is related to this selfhost repo, not the main tracker for RecipeSage here
Indeed a bug! It should be lowercase "forever" as the default and "Forever" should not work.
Fixed in the latest version.