# Paid Apps

By default, App has no subscription and is free to use. But you can override this:

```js title="index.js"
configuration.pricing = {
  planType: 'recurring',
  trial: 14,
  trialCrowdin: 14,
  trialEnterprise: 30,
  cachingSeconds: 12 * 60 * 60,
  infoDisplayDaysThreshold: 14
};
```

| Parameter                  | Description                                                                                                                   | Default value |
|----------------------------|-------------------------------------------------------------------------------------------------------------------------------|---------------|
| `trial`                    | Amount of days to use app for free.                                                                                           | `14`          |
| `trialCrowdin`             | Amount of days specifically in crowdin workspace.                                                                             | `14`          |
| `trialEnterprise`          | Amount of days specifically for enterprise.                                                                                   | `30`          |
| `cachingSeconds`           | Time in seconds of how long to cache subscription info.                                                                       | `0`           |
| `infoDisplayDaysThreshold` | Number of days threshold to check if subscription info should be displayed (if not defined then info will be always visible). | —             |