diff --git a/CHANGELOG b/CHANGELOG index 3a419c0..a4e89cd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,15 @@ Change Log ========== +0.2.6 (01/04/2022) +------------------ +- Download configuration files from git during run time +- Take all env vars as optional arguments during class initialization + +0.2.5 (01/04/2022) +------------------ +- Move configuration files into a dedicated directory + 0.2.4 (01/03/2022) ------------------ - Fix `requirements.txt` path in `setup.py` diff --git a/doc_generator/conf.py b/doc_generator/conf.py index 02dd466..3527d79 100644 --- a/doc_generator/conf.py +++ b/doc_generator/conf.py @@ -14,6 +14,7 @@ import sys sys.path.insert(0, os.path.abspath(f'..{os.path.sep}expose')) +sys.path.insert(0, os.path.abspath('..')) # -- Project information ----------------------------------------------------- diff --git a/docs/index.html b/docs/index.html index 7a6ac2d..1a171af 100644 --- a/docs/index.html +++ b/docs/index.html @@ -60,7 +60,7 @@
Initiates Tunnel
object to spin up an EC2 instance with a pre-configured AMI which acts as a tunnel.
>>> Tunnel
image_id – Takes image ID as an argument. Defaults to ami_id
in environment variable.
port – Port number where the application/API is running in localhost.
domain_name – Name of the hosted zone in which an A
record has to be added. [example.com
]
subdomain – Subdomain using which the localhost has to be accessed. [tunnel
or tunnel.example.com
]
Creates an EC2 instance of type t2.nano
with the pre-configured AMI id.
image_id – Takes image ID as an argument. Defaults to ami_id
in environment variable. Exits if null.
Instance ID.
+Instance ID.
str or None
+str or None
Calls the class methods _create_ec2_instance
and _instance_info
to configure the ec2 instance.
port – Port number where the application/API is running in localhost.
-Configures the ec2 instance to take traffic from localhost.
public_dns – Public DNS name of the EC2 that was created.
public_ip – Public IP of the EC2 that was created.
port – Port number on which the app/api is running.
domain_name – Name of the hosted zone in which an A
record has to be added. [example.com
]
subdomain – Subdomain using which the localhost has to be accessed. [tunnel
or tunnel.example.com
]