├── .gitignore ├── LICENSE ├── README.md ├── examples ├── arraytools │ ├── array_from.sql │ └── package.json ├── fruit │ ├── fruit.sql │ └── package.json └── literals │ ├── from_csv.sql │ ├── from_gherkin.sql │ ├── from_markdown.sql │ ├── package.json │ └── to_markdown.sql ├── pyproject.toml ├── requirements.txt ├── setup.py └── titan ├── __init__.py ├── __main__.py ├── api.py ├── ast.py ├── cli.py ├── connect.py ├── environment.py ├── installer.py ├── management ├── __init__.py └── commands │ ├── titan_assert.sql │ ├── titan_import.sql │ ├── titan_link.sql │ ├── titan_reset.sql │ ├── titan_state.sql │ └── titan_uninstall.sql ├── package.py └── reserved.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/README.md -------------------------------------------------------------------------------- /examples/arraytools/array_from.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/arraytools/array_from.sql -------------------------------------------------------------------------------- /examples/arraytools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/arraytools/package.json -------------------------------------------------------------------------------- /examples/fruit/fruit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/fruit/fruit.sql -------------------------------------------------------------------------------- /examples/fruit/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/literals/from_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/literals/from_csv.sql -------------------------------------------------------------------------------- /examples/literals/from_gherkin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/literals/from_gherkin.sql -------------------------------------------------------------------------------- /examples/literals/from_markdown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/literals/from_markdown.sql -------------------------------------------------------------------------------- /examples/literals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/literals/package.json -------------------------------------------------------------------------------- /examples/literals/to_markdown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/examples/literals/to_markdown.sql -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/setup.py -------------------------------------------------------------------------------- /titan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/__init__.py -------------------------------------------------------------------------------- /titan/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/__main__.py -------------------------------------------------------------------------------- /titan/api.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /titan/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/ast.py -------------------------------------------------------------------------------- /titan/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/cli.py -------------------------------------------------------------------------------- /titan/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/connect.py -------------------------------------------------------------------------------- /titan/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/environment.py -------------------------------------------------------------------------------- /titan/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/installer.py -------------------------------------------------------------------------------- /titan/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/__init__.py -------------------------------------------------------------------------------- /titan/management/commands/titan_assert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/commands/titan_assert.sql -------------------------------------------------------------------------------- /titan/management/commands/titan_import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/commands/titan_import.sql -------------------------------------------------------------------------------- /titan/management/commands/titan_link.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/commands/titan_link.sql -------------------------------------------------------------------------------- /titan/management/commands/titan_reset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/commands/titan_reset.sql -------------------------------------------------------------------------------- /titan/management/commands/titan_state.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/commands/titan_state.sql -------------------------------------------------------------------------------- /titan/management/commands/titan_uninstall.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/management/commands/titan_uninstall.sql -------------------------------------------------------------------------------- /titan/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/package.py -------------------------------------------------------------------------------- /titan/reserved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teej/titan-sf/HEAD/titan/reserved.py --------------------------------------------------------------------------------