16 lines
825 B
Plaintext
16 lines
825 B
Plaintext
# Format:
|
|
; Program Name: autorun COMMANDS env_file=PATH_OF_FILE pwd=PATH_OF_WORKING_DIR ENV_VAR1=VALUE ENV_VAR2="VALUE WITH SPACE"
|
|
|
|
# Help:
|
|
; Program Name: Will be displayed on Procfile or Tools' Menu (can contains space)
|
|
; autorun: Your COMMANDS will be run automatically when Laragon starts
|
|
; COMMANDS: A command or a series of commands (separated by & )
|
|
; env_file: You can set environment variables directly or put them to the file
|
|
; PWD: Current working directory - where the COMMANDS run
|
|
|
|
# Examples:
|
|
; My Cool App: autorun node start $PORT PORT=9000 env_file=usr\my_file.env PWD=usr/proj/myapp DB_HOST=1.2.3.4 DB_PORT=9999 DB_USER=user DB_PASS="!$Ab.cs3cre1" DB_NAME=cooldb
|
|
; Awesome Tool: "PATH HAS SPACES SHOULD BE QUOTED LIKE THIS"
|
|
------------------------------------------------------------------------------
|
|
|