Getting started
Open ORGANIZATION_NAME.PRODUCT_NAME.sln
Drag the src/PRODUCT_NAME/WebApi/ClientApp folder into VSCode and install packages
npm i
Run Visual Studio configuration "PRODUCT_NAME"
Open localhost:8080 or localhost:5000
If you configured a valid database (appSettings.Development.json) you shouldn't get any error when you login with your admin user.
Open localhost:8080/admin/products, click "Go to pricing page" and configure your prices by modifying the file: src/store/modules/pricing/default-pricing.Development.ts
Once you like the localhost:8080/pricing page, go to localhost:8080/admin/products and click "Click here to generate these prices in Database and Stripe".
The admin user is not a tenant, and it's the only user who has access to /admin pages.
Try to register with another email and ensure you get the Welcome/Verification email.
Take the example of http://localhost:8080/app/transactions and http://localhost:8080/app/transactions2 to see how you can create a simple CRUD.
Last modified 2yr ago