Skip to content

ximtech/altium-migrator

Repository files navigation

Altium database migration tool

build

The Altium database migration tool is a Spring boot application that helps handle changes from Git component repository to local database for offline development or any other hosted Postgres database by data source.

How it works

<img width="20" height="20"/>

  1. User run docker command, then if application image is not in local storage it will be downloaded from public docker hub
  2. The container will start with user provided DB connection or default for local development
  3. After the start, application will fetch from repository migration scripts(database sql dump)
  4. Then liquibase migration tool will check database state and update it if needed
  5. Application can be run as many times as needed, it won't overwrite data or duplicate them.

How to use it

  1. First, download and install Docker here: Download Docker Desktop for Windows
  2. After Docker has been installed, check it with: docker ps in command prompt
  3. Then need to signup/sign-in for Docker hub. Open Docker desktop and then Sign in:

<img width="20" height="20"/>

  1. Check login with command: docker login

<img width="20" height="20"/>

  1. Now when Docker has configured. Need to install PostgresDB for local environment

    • First option. Run Database in container see here
      • Run in command line: docker pull postgres, it will pull the latest Postgres image
      • Run Database image:
        docker run -d -p 5432:5432\
        --name dev-postgres \
        -e POSTGRES_PASSWORD=postgres \
        -e POSTGRES_USER=postgres \
        -e POSTGRES_DB=altium-components \
        postgres
      
    • Second option. Download and install Postgres for local development here -> Download the installer
      • Download and install PgAdmin tool from here
      • Create empty Database:
        • <img width="20" height="20"/>
      • In Database field write: altium-components -> Save
      • Check that empty database has been created:
        • <img width="20" height="20"/>
  2. Create DB schema: altium. It will be used as default schema

  3. When all has been configured and empty Database created. Then run application

Local development

docker run -p 5432:5432 -e PROFILE=docker-dev ximtech/altium-migrator

Custom Database Hosting

Note: For custom datasource do not change PROFILE variable

    docker run -p 5432:5432 \
    -e PROFILE=prod \
    -e ALTIUM_DB_DATASOURCE='jdbc:postgresql://host.docker.internal:5432/altium-components' \
    -e ALTIUM_DB_USERNAME='postgres' \
    -e ALTIUM_DB_PASSWORD='postgres' \
    -e LIQUIBASE_SCHEMA_NAME=altium \
    ximtech/altium-migrator:latest
  1. At the end check that all data has been transferred:
  • <img width="20" height="20"/>

Database Structure

  • <img width="20" height="20"/>

About

Spring boot application for automated Altium component migrations

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published