Skip to content

Container Configuration

💡 TL;DR - Configure Containers with env variables

Containers are most commonly configured by environment variables, either in docker files, docker compose files, env files, or command line arguments. The most common configuration parameters govern database / port locations - click here.

 

Starting the Server

Via the Container

Once the container is created, you can start it click here, which contains:

docker run --env-file devops/docker-image/env.list -it --name api_logic_project --rm --net dev-network -p 5656:5656 -p 5002:5002 apilogicserver/<your project>

Note that:

  1. Execution begins automatically (the dockerfile runs python api_logic_server_run.py)

  2. Configuration is via env.list; configure as required

 

Via the IDE

As described in the Quick Start, Run Configurations are provided to start the server in your IDE.

 

Command Line - Python

Recall that you execute your API Logic Project by starting the server, like this:

ApiLogicServer (venv)> cd my_new_project
my_new_project(venv)> python api_logic_server_run.py
Note this presumes you have activated your venv. The system also provides shell scripts you can use:
sh run.sh  # windows - use run.ps1

Then, to run the Admin App and Swagger:

Run your browser at

http://localhost:5656/

 

Command Line - Scripts

Alternatively, you can start the server using the run script, e.g.:

Stopping the server

You can stop the server by cancelling it, or via an API:

http://localhost:5656/stop?msg=API stop - Stop API Logic Server

This can be useful in testing if you don't have access to the server console. The msg parameter is optional.

 

Configuring the server

Configuration parameters enable you to specify hosts and ports, database locations, debug settings, etc,, as described below.

 

Database Locations

SQLAlchemy database URIs are set in your `conf/config.py`` file, from your creation CLI arguments. They apply to target database(s), and the authentication database. For example:

    SQLALCHEMY_DATABASE_URI : typing.Optional[str] = f"mysql+pymysql://root:p@localhost:3306/classicmodels"

Special handling is provided for sqlite databases, as described here.

 

Docker Directories

Projects are created with a devops/docker-image/build-image/dockerfile, resulting in the following directory structure:

docker-directories

 

Hosts and Ports

ApiLogicServer attempts to avoid port conflicts. These can arise from:

  • Common use of 8080

  • Mac use of 5000

To avoid conflicts, ports are defaulted as follows:

For Port
ApiLogicServer 5656
Basic Web App 5002

Hosts are defaulted as follows:

Installed as Basic Web App Host
Docker 0.0.0.0
Local Install localhost

These defaults are also stored in the conf/config.py file.

 

Defaults: Create Time

You can specify default values for hosts, ports and databases when you create the application. Specify ApiLogicServer CLI arguments, like this:

ApiLogicServer create --project_name=~/dev/servers/api_logic_server \
                      --host=myhost --port=myport --swagger_host=mycloud \
                      --db_url=mysql+pymysql://root:p@localhost:3306/classicmodels

 

Overrides: Config.py

As noted above, the defaults are stored in the conf/config.py file. You can override these values as required.

 

Overrides: Logic Project CLI

When you run created applications, you can provide API Logic Project arguments to override the defaults. Discover the arguments using --help:

(venv) val@Vals-MBP-16 ApiLogicProject % python api_logic_server_run.py -h

API Logic Project Starting: /Users/val/dev/servers/ApiLogicProject/api_logic_server_run.py
usage: api_logic_server_run.py [-h] [--port PORT] [--flask_host FLASK_HOST] [--swagger_host SWAGGER_HOST]
                               [--swagger_port SWAGGER_PORT] [--http_type HTTP_TYPE] [--verbose VERBOSE]
                               [--create_and_run CREATE_AND_RUN]
                               [flask_host_p] [port_p] [swagger_host_p]

positional arguments:
  flask_host_p
  port_p
  swagger_host_p

options:
  -h, --help                       show this help message and exit
  --port PORT                      port (Flask) (default: 5656)
  --flask_host FLASK_HOST          ip to which flask will be bound (default: localhost)
  --swagger_host SWAGGER_HOST      ip clients use to access API (default: localhost)
  --swagger_port SWAGGER_PORT      swagger port (eg, 443 for codespaces) (default: 5656)
  --http_type HTTP_TYPE            http or https (default: http)
  --verbose VERBOSE                for more logging (default: False)
  --create_and_run CREATE_AND_RUN  system use - log how to open project (default: False)
(venv) val@Vals-MBP-16 ApiLogicProject % 
These are used for Codespaces support

 

Notes:

  • host is the flask-host, which maps to the IP address of the interface to which flask will be bound (on the machine itself
  • swagger_host maps to the ip address as seen by the clients

For example, 127.0.0.1 (localhost) or 0.0.0.0 (any interface) only have meaning on your own computer.

Also, it's possible to map hostname->IP DNS entries manually in /etc/hosts, but users on other computers are not aware of that mapping.

Overrides - env variables

A common approach for host, port and database configuration is to use env variables. These can be set in your OS, or container options such as env files or docker compose.

The names of the variables are those noted used in the conf/config.py file, preceded by APILOGICPROJECT_1. These values override both the conf/config.py values and the Api Logic Project CLI arguments.

Here are the most commonly set environment variables:

services:

    api-logic-server:
        image: apilogicserver/classicmodels
        environment:
          - APILOGICPROJECT_VERBOSE=true
          - SECURITY_ENABLED=true
          - APILOGICPROJECT_CLIENT_URI=//classicmodels.azurewebsites.net
          - PYTHONPATH=/app/ApiLogicProject 
          ## specify Database uri's:
          - APILOGICPROJECT_SQLALCHEMY_DATABASE_URI=mysql+pymysql://root:p@mysql-service:3306/classicmodels
          - APILOGICPROJECT_SQLALCHEMY_DATABASE_URI_AUTHENTICATION=mysql+pymysql://root:p@mysql-service:3306/authdb

For example, to override the database location on mac:

export APILOGICPROJECT_SQLALCHEMY_DATABASE_URI=mysql+pymysql://root:p@localhost:3306/

To see a list of typical env variables, click here.

The example below illustrates you can store such variables in a devops/docker-image/env.list file (be sure to edit these - they are to confirm settings during initial testing):

Running image locally

Debugging

You can see the env variables in the sample env_list file - click here.

Use the APILOGICPROJECT_VERBOSE to log the values to the console log.

 

Production Deployment

As noted in the gunicorn documentation:

While lightweight and easy to use, Flask’s built-in server is not suitable for production as it doesn’t scale well.

 

gunicorn

You can run API Logic Server servers under gunicorn. To use the default API Logic Server ports:

gunicorn api_logic_server_run:flask_app -w 4 -b localhost:5656

Or, to use the default gunicorn ports:

gunicorn api_logic_server_run:flask_app -w 4

You will also need to:

  1. Update the default server/port settings in api_logic_server_run.py
  2. Start your browser at http://127.0.0.1:8000

 

PythonAnywhere

Please see the Install Instructions for information on PythonAnywhere.

 

Docker

You can use Docker compose files or env files to configure your project. There is an example in the default project - click here to see run-image.sh.


  1. Several changes were made as of release 9.01.17. It is available as preview; click here