Upgrade to {{ brand_name }} Pro

{% set base_price = g.settings.get('stripe_base_price', 1.39)|float %} {% set base_currency = g.settings.get('stripe_base_currency', 'cad')|lower %} {% set pref = (g.user.preferred_currency if g.user and g.user.preferred_currency else 'usd')|lower %} {% set enable_regional = g.settings.get('stripe_regional_currency', '1') == '1' %} {% set rates = get_exchange_rates(base_currency) %} {% set target_curr = pref if enable_regional and pref in rates else base_currency %} {% set target_price = base_price * rates.get(target_curr, 1.0) %} {% set symbols = {'usd': '$', 'cad': '$', 'eur': '€', 'gbp': '£', 'aud': '$'} %}

For just {{ target_curr|upper }} {{ symbols.get(target_curr, '$') }}{{ "%.2f"|format(target_price) }} / month, unlock the full potential of your repositories.

Standard
  • Public Repo Size: {{ g.settings.get('git_standard_public_repo_size_limit_mb', 1024) }} MB
  • Private Repo Size: {{ g.settings.get('git_standard_private_repo_size_limit_mb', 100) }} MB
  • Total Repo Size Limit: {{ g.settings.get('max_storage_gb_standard', 1) }} GB
  • Daily Credits: {{ g.settings.get('credits_standard_daily', 50) }}
  • Max Credits Stack: {{ g.settings.get('credits_standard_max', 100) }}
  • Simultaneous Shells: {{ g.settings.get('shell_max_standard', 1) }}
Pro
  • Public Repo Size: {{ g.settings.get('git_pro_public_repo_size_limit_mb', 5120) }} MB
  • Private Repo Size: {{ g.settings.get('git_pro_private_repo_size_limit_mb', 500) }} MB
  • Total Repo Size Limit: {{ g.settings.get('max_storage_gb_pro', 10) }} GB
  • Daily Credits: {{ g.settings.get('credits_pro_daily', 250) }}
  • Max Credits Stack: {{ g.settings.get('credits_pro_max', 1000) }}
  • Simultaneous Shells: {{ g.settings.get('shell_max_pro', 3) }}