Distribute Your Product
When you are done developing a market-ready version of your project, you can offer it on Flinkwerk Marketplace with a few lines of configuration and one CLI command.
To sell your project as a product:
Add these lines to the project configuration.
.flinkwerk/config.ymlproduct:
type: app
price: 42Run this command from within your project root:
flinkwerk distribute
This command will automatically publish your project as a product on Flinkwerk Marketplace with the application version
1.0.0
. Flinkwerk automatically assigned the SKUmy-account/my-project
to it, based on theowner
and projectname
values you provided in the project configuration.
From now on, anyone can buy your "Hello world!" application on Flinkwerk Marketplace for a monthly subscription with a $42.00 price tag.
Additionally, anyone can use your application as a base product for their project by adding these lines to their project configuration:
from:
type: app
sku: my-account/my-project:1.0.0