Skip to content

riskers/GithubX-API

Repository files navigation

GithubX-API

the API for GithubX

Deploy

> docker-compose up -d

Dev

> cp src/main/resources/application-dev.properties.sample src/main/resources/application-dev.properties

Publish Docker Image

The process had been integrated on Github Actions.

You can also publish the image manually:

  1. package jar and build Docker image

    > docker build -t githubx-api .
  2. push Docker image

    > docker tag githubx-api riskers/githubx-api
    > docker push riskers/githubx-api