cd ~/papermc-server
java -Xmx2048M -Xms2048M -jar server.jar nogui
-Xms<n>
Specifies the initial size, in bytes, of the memory allocation pool.
-Xmx<n>
Specifies the maximum size, in bytes, of the memory allocation pool.
<!-- Inline variable --> | |
{{ variable_name }} | |
<!-- Loop --> | |
{% with messages = get_flashed_messages(with_categories=True) %} | |
{%- if messages %} | |
{% for category, message in messages %} | |
<p>{{ message }}</p> | |
{% endfor %} | |
{% endif -%} |