New Entity AI

Draft 1.0:
Index


dugout-> program_env.dugout



Create default environment variable to system/user programs. In New Entity OS™ all user-space programs utilize Python and shell only. All Ruby programs have been consolidated. There are still some interactive web-server components that utilize PHP. For user-space web-server programs that are of an interactive nature, all subsystems have been consolidated to use either the New Entity IO™ framework or in the event that this is not sufficient, Flask. The following is an overview of a system that runs complex web applications using Flask and New Entity IO™:

1.) You can either write Python byte-code to the environment or not. In events where you need an added boost in cache performance, this may be desired, but it also may be rejected when a cache is not desired, in applications for critical infrastructure.
2.) You can set a default adapter for the APP_SETTINGS variable
3.) You can set a default adapter for a databse of your choosing throught the DATABASE_URL variable
4.) You will need to set the three default flask variables, _DEBUG, _ENV, and _APP
5.) You will need to set the five default ENTITY_* specific variables. They are _MAIL_ADMIN, _MAIL_ADMIN_VALIDATOR, _ADMIN, _BIZARRO, and _GONEWILD. The last three are user accounts to perform automation and testing. The first two are to configure security alerts
6.) As is standard, you will need a configured secret key to utilize secure mail


           

#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2023 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: program_env.dugout
## MODIFIED: 2023/12/21
## OVERVIEW: Create default environment variables to system/user programs
## HISTORY: VERSION 1.2
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/12/17 (VERSION 1.1)
## -> 2023/12/21 (VERSION 1.2) Production
###############################################################################
## APPLICATION SETTINGS: python
## User: Prevent python from writing .pyc files
export PYTHONDONTWRITEBYTECODE="${CONFIGURATION_PYTHONDONTWRITEBYTECODE}"
###############################################################################
## APPLICATION SETTINGS: corehost
## Use: Define legacy imports for the NewEntity.IO community branch
export APP_SETTINGS="${CONFIGURATION_APP_SETTINGS}"
export DATABASE_URL="${CONFIGURATION_DATABASE_URL}"
## Use: Define imports for corehost V.1.0.0
export FLASK_DEBUG="${CONFIGURATION_FLASK_DEBUG}"
export FLASK_ENV="${CONFIGURATION_FLASK_ENV}"
export FLASK_APP="${CONFIGURATION_FLASK_APP}"
## Use: Establish mail server validators and credentials for corehost V.1.0.0
export ENTITY_MAIL_ADMIN="${CONFIGURATION_ENTITY_MAIL_ADMIN}"
export ENTITY_MAIL_ADMIN_VALIDATOR="${CONFIGURATION_MAIL_ADMIN_VALIDATOR}"
## Use: Export a secret key to secure corehost V.1.0.0
export SECRET_KEY="${CONFIGURATION_SECRET_KEY}"
## Use: Establish application users for corehost V.1.0.0
export ENTITY_ADMIN="${CONFIGURATION_ENTITY_ADMIN}"
export ENTITY_BIZARRO="${CONFIGURATION_ENTITY_BIZARRO}"
export ENTITY_GONEWILD="${CONFIGURATION_ENTITY_GONEWILD}"