Show a default plan with 2TB storage when running the server locally #729
Closed
mnvr
started this conversation in
Feature requests
Replies: 1 comment
-
This is now done. You can use The CLI also provides a bunch of other commands that you might useful for administering your instance. However, and just for completeness' sake (using the CLI is less error-prone and more convenient), if you wish to allocate extra space on your self hosted instance without using the CLI, you could've also run the following SQL query against the database for your self hosted instance: INSERT INTO storage_bonus (bonus_id, user_id, storage, type, valid_till) VALUES ('self-hosted-myself', (SELECT user_id FROM users LIMIT 1), 1099511627776, 'ADD_ON_SUPPORT', 0) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Right now, when we create an account in a locally running server, it shows the following default plan selector
This is working as expected, because when running locally there are no paid plans present. But for convenience it is better show a much larger plan in these circumstances, or expand the scope of the trial (say 2T, 20 years) to reduce the amount of fiddling self hosters need to do.
Beta Was this translation helpful? Give feedback.
All reactions