Metadata-Version: 2.1
Name: database_version_control
Version: 0.6.0
Summary: Version control your database!
Home-page: https://github.com/kenho811/Python_Database_Version_Control
Author: Ken Ho
Author-email: kenho811@gmail.com
License: Apache License 2.0
Project-URL: Documentation, https://python-database-version-control.readthedocs.io/en/latest/
Project-URL: Source Code, https://github.com/kenho811/Python_Database_Version_Control
Project-URL: PyPI, https://pypi.org/project/database-version-control/
Project-URL: Docker Code, https://hub.docker.com/repository/docker/kenho811/database-version-control#
Project-URL: YouTube, https://www.youtube.com/watch?v=9l3m7zBxN4Y
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7.*
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# DVC

<p align="center">
  <img src="docs/_static/img/logo/app_logo_black.png"  alt="Version Control Your Database Now!"/>
</p>

<p align="center">
A Database Version Control (DVC) tool written in Python.
</p>

[![GitHub](https://img.shields.io/github/license/kenho811/Python_Database_Version_Control?style=plastic)](https://github.com/kenho811/Python_Database_Version_Control/blob/master/LICENSE)
[![Read the Docs (version)](https://img.shields.io/readthedocs/python-database-version-control/latest?style=plastic)](https://python-database-version-control.readthedocs.io/en/latest)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/kenho811/Python_Database_Version_Control/Test)
[![PyPI](https://img.shields.io/pypi/v/database-version-control)](https://pypi.org/project/database-version-control/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/database-version-control)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/kenho811/Python_Database_Version_Control?style=plastic)
![GitHub last commit](https://img.shields.io/github/last-commit/kenho811/Python_Database_Version_Control)

![GitHub followers](https://img.shields.io/github/followers/kenho811?style=social)
[![YouTube Channel Views](https://img.shields.io/youtube/channel/views/UC9aCwHsCO0ZewWlQy27naEA?style=social)](https://www.youtube.com/watch?v=9l3m7zBxN4Y)

## More information

GitHub                                                                                                     |  DockerHub                                                                                                                       | Readthedocs                                                                                                                      | Youtube                                           |
:---------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
[![Github](docs/_static/img/logo/github_logo.png)](https://github.com/kenho811/Python_Database_Version_Control) | [![Dockerhub](docs/_static/img/logo/dockerhub_logo.png)](https://hub.docker.com/repository/docker/kenho811/database-version-control#) | [![Readthedocs](docs/_static/img/logo/readthedocs_logo.png)](https://python-database-version-control.readthedocs.io/en/latest/) | [![Youtube](docs/_static/img/logo/youtube_logo.png)](https://www.youtube.com/watch?v=9l3m7zBxN4Y)


## Key Features

### Command line interface

<p align="center">
  <img src="docs/_static/gif/command_line_interface.gif"  alt="Command Line Interface"/>
</p>

### Rich Database metadata

<p align="center">
  <img src="docs/_static/gif/rich_metadata.gif"  alt="Rich Database Metadata"/>
</p>

### Database Upgrade and Downgrade

<p align="center">
  <img src="docs/_static/gif/database_upgrade_and_downgrade.gif"  alt="Rich Database Metadata"/>
</p>

### Flexible Configuration Format

- Via Environment Variables

<p align="center">
  <img src="docs/_static/gif/config_via_env_var.gif"  alt="Config via environment variables"/>
</p>

- Via Configuration File

<p align="center">
  <img src="docs/_static/gif/config_via_config_file.gif"  alt="Config via environment variables"/>
</p>


## Deployment



### As a Commandline tool
#### Executables on github releases
https://github.com/kenho811/Python_Database_Version_Control/releases

- The releases page provides executables on the below three Operating Systems.
  - Mac (Latest)
  - Linux Ubunutu (Latest)
  - Windows (Latest)

if you happen to use one of the OSes listed above, you can download the executable directly and use it without installing python!


#### Python Library on PyPI
https://pypi.org/project/database-version-control/

- If you have python and pip installed, you can download the command line tool from PyPI!

```commandline
# Install the library from PyPi
pip install database-version-control

# To get more instructions of the commandline tool, run the below in the terminal
dvc --help
```

### As a Microservice
#### Image on Dockerhub
https://hub.docker.com/repository/docker/kenho811/database-version-control#

- Run the below to see it in action
```commandline
# Clone the repo and checkout release branch
git clone -b release git@github.com:kenho811/Python_Database_Version_Control.git 

# cd to the repository
cd Python_Database_Version_Control/docker_compose_demo

# Fnd the docker-compose.yml and run 
docker compose up

# Using psql as client, access the postgres DB and see the result
(URL: postgres://test:test@localhost:5433/test)
PGPASSWORD=test psql -U test -d test -h localhost -p 5433

# Check out docker-compose.yml file for usage as a microservice
```




## Development-Testing-release workflow

```commandline
# Git clone the repo and checkout master
git clone -b master git@github.com:kenho811/Python_Database_Version_Control.git 

# create a feature branch
git checkout -b feature/{code_change_theme}

# Pip install dependencies
pip install with `pip install ".[dev]"`

# Enable local githooks
git config --local core.hooksPath .githooks/

# Development

# Write unit + integration tests

# Run pytest
pytest

# Generate Documentation locally. ISLOCAL=1 removes local dependencies.
cd docs
ISLOCAL=1 make clean html

# Open PR against master

# (By maintainer) For a new release, cut a new release branch with version number (match app version number). 
git checkout -b release/{app_version_number}

```

## CI convention 
- The below is currently triggered via Github Action

Branch | Testing | DockerHub tag | Dockerhub Readme | PyPI version  | Readthedocs version |
--- |---------|---------------|------------------|---------------|---------------------|
master | Yes     | latest        | Yes           | N/A           | latest              |
release/{major.minor} | Yes     | N/A           | N/A           | N/A           | N/A                 |
feature | Yes     | N/A           | No            | N/A           | feature-doc         |

Tag | DockerHub tag               | Dockerhub Readme | PyPI version        | Readthedocs version         |
--- |-----------------------------|------------------|---------------------|-----------------------------|
release/{major.minor.patch} | release-{major.minor.patch} | No | {major.minor.patch} | release-{major.minor.patch} |



## Technical Details
### Database supported

Postgres                   |
:-------------------------:|
![Postgres](docs/_static/img/logo/postgresql_logo.png)  | 

Support for other databases will be added soon....

### Database instructions format supported

- SQL files 


#### SQL files naming convention

- All SQL files are considered `revision files`
- They must follow the pattern `RV[0-9]*__.*\.(upgrade|downgrade)\.sql`. In words, it means
  - They start with the prefix `RV`
  - After `RV`, it follows an arbitrary revision number (e.g. RV1, RV2, RV3 etc. etc.)
  - After `RV(arbitrary_revision_number)`, it follows double underscores and an arbitrary number of characters. Everything after `__` describes what the SQL file does.
  - After `RV(arbitrary_revision_number)__(description)`, it follows a dot and the character group of either `upgrade` or `downgrade`. When applied, an upgrade revision file will move the database version upward by 1, while a downgrade revision file will move the database version downward by 1.
  - After `RV(arbitrary_revision_number)__(description).(upgrade/downgrade)`, it follows a dot and the character group of `sql` .
  - Overall, `RV(arbitrary_revision_number)__(description).(upgrade/downgrade).sql`
- Example SQL revision files
  - RV1__create_scm_company_secrets_and_tbl_earnings.upgrade.sql
  - RV1__delete_scm_company_secrets_cascade.downgrade.sql
  - RV2__alter_scm_company_secrets_tbl_earnings_updated_at_add_index.upgrade.sql
  - RV2__alter_scm_company_secrets_tbl_earnings_updated_at_remove_index.downgrade.sql

### Database Metadata 

- Schema dvc will be created
  - Table dvc.database_revision_history will be created.
  - Table dvc.database_version_history will be created.
  
### User Interface

- CLI
  - Made with Python `Typer` Library
    - Entrypoint is `dvc`
    - Sample commands are
      - `dvc version` --> Show version
      - `dvc cfg` --> Configuration related commands
        - `dvc cfg init` --> Generate configuration files
      - `dvc db` --> Database related commands
        - `dvc db init` --> Initialise the database with metadata schema and tables
        - `dvc db upgrade` ---> Apply Database Upgrade Revision and mark to metadata tables
          - `dvc db upgrade --mark-only` ---> Only mark to metadata tables 
        - `dvc db downgrade` ---> Apply Database Downgrade Revision
          - `dvc db downgrade --mark-only` ---> Only mark to metadata tables 
        - `dvc db current` ---> Current Database Version
        - `dvc db ping` --> Ping database connection


