To clone and run the ss-core service, you'll need Docker installed on your computer.
# Clone this repository
$ git clone https://github.com/Star-Sync/ss-core
# Go into the repository
$ cd ss-core
# Go into the docker directory
$ cd docker
# Run the container
$ docker compose up --build# Install testing packages
$ pip install -r requirements-dev.txt
# Run tests and generate coverage report
$ python -m pytest --cov=./ --cov-report=html --cov-fail-under=50View the coverage report by opening htmlcov/index.html in a browser.