You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tarantool follows semantic versioning, which is described in the :ref:`Tarantool release policy <release-policy>` section.
295
-
296
-
* ``Target`` is the platform Tarantool is built on.
297
-
Platform-specific details may follow this line.
298
-
299
-
300
-
.. option:: -c, --configPATH
301
-
302
-
**Since:** :doc:`3.0.0 </release/3.0.0>`.
303
-
304
-
Set a path to a :ref:`YAML configuration file <configuration_file>`.
305
-
You can also configure this value using the ``TT_CONFIG`` environment variable.
306
-
307
-
See also: :ref:`Starting an instance using the tarantool command <configuration_run_instance_tarantool>`
308
-
309
-
.. option:: -n, --nameINSTANCE
310
-
311
-
**Since:** :doc:`3.0.0 </release/3.0.0>`.
312
-
313
-
Set the name of an instance to run.
314
-
You can also configure this value using the ``TT_INSTANCE_NAME`` environment variable.
315
-
316
-
See also: :ref:`Starting an instance using the tarantool command <configuration_run_instance_tarantool>`
317
-
318
-
319
-
.. option:: -i
320
-
321
-
Enter an :ref:`interactive mode <interactive_console>`.
322
-
323
-
**Example**
324
-
325
-
.. code-block:: console
326
-
327
-
$ tarantool -i
328
-
329
-
330
-
.. option:: -eEXPR
331
-
332
-
Execute the 'EXPR' string. See also: `lua man page <https://www.lua.org/manual/5.3/lua.html>`_.
333
-
334
-
**Example**
335
-
336
-
.. code-block:: console
337
-
338
-
$ tarantool -e 'print("Hello, world!")'
339
-
Hello, world!
340
-
341
-
.. option:: -lNAME
342
-
343
-
Require the 'NAME' library. See also: `lua man page <https://www.lua.org/manual/5.3/lua.html>`_.
344
-
345
-
**Example**
346
-
347
-
.. code-block:: console
348
-
349
-
$ tarantool -l luatest.coverage script.lua
350
-
351
-
.. option:: -jcmd
352
-
353
-
Perform a LuaJIT control command. See also: `Command Line Options <https://luajit.org/running.html>`_.
354
-
355
-
**Example**
356
-
357
-
.. code-block:: console
358
-
359
-
$ tarantool -j off app.lua
360
-
361
-
.. option:: -b...
362
-
363
-
Save or list bytecode. See also: `Command Line Options <https://luajit.org/running.html>`_.
364
-
365
-
**Example**
366
-
367
-
.. code-block:: console
368
-
369
-
$ tarantool -b test.lua test.out
370
-
371
-
.. option:: -dSCRIPT
372
-
373
-
Activate a debugging session for 'SCRIPT'. See also: `luadebug.lua <https://github.com/tarantool/tarantool/blob/master/third_party/lua/README-luadebug.md>`_.
374
-
375
-
**Example**
376
-
377
-
.. code-block:: console
378
-
379
-
$ tarantool -d app.lua
380
-
381
-
382
-
.. option:: --
383
-
384
-
Stop handling options. See also: `lua man page <https://www.lua.org/manual/5.3/lua.html>`_.
385
-
386
-
387
-
.. option:: -
388
-
389
-
Stop handling options and execute the standard input as a file. See also: `lua man page <https://www.lua.org/manual/5.3/lua.html>`_.
0 commit comments