How to deploy your Orionjs application
Orionjs comes with a built-in CLI tool that helps you start your application in production mode.
The deployment process for an Orionjs application follows a standard Node.js deployment workflow:
Install dependencies
Start the server
This will start the Node.js server using the entry point at app/index.ts
.
Remember that you must set the environment variables needed to load the .env
file before starting the server:
ORION_ENV_SECRET_KEY
: The secret key used to decrypt your environment variablesORION_ENV_FILE_PATH
: Path to your encrypted environment fileHow to deploy your Orionjs application
Orionjs comes with a built-in CLI tool that helps you start your application in production mode.
The deployment process for an Orionjs application follows a standard Node.js deployment workflow:
Install dependencies
Start the server
This will start the Node.js server using the entry point at app/index.ts
.
Remember that you must set the environment variables needed to load the .env
file before starting the server:
ORION_ENV_SECRET_KEY
: The secret key used to decrypt your environment variablesORION_ENV_FILE_PATH
: Path to your encrypted environment file