Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.12 KB

README.md

File metadata and controls

29 lines (24 loc) · 1.12 KB

Build Status

Quick Start

yarn install
KOWALSKI_API_BASE_URL='<http/https>://<kowalski_host>:<kowalski_port' yarn run start

Deployment in production using Docker

SATURNO_VERSION="SOME_VERSION" KOWALSKI_API_BASE_URL="PRODUCTION_KOWALSKI_API_URI" yarn run build
docker build . -t kowalski/saturno
docker run --rm -p 3443:443 -v /path/to/certificate.crt:/etc/nginx/ssl/certificate.crt -v /path/to/server.key:/etc/nginx/ssl/server.key kowalski/saturno

Roadmap

  • Fix current unit tests
  • Setup CI/CD with unit tests coverage information being visible in the README.md
  • Reach 90% coverage of unit tests
  • Migrate codebase to Typescript
  • Update react to 16.3+ and Redux to 4.0+

Contribution Guidelines

  • Fork the project.
  • Branch master and start working on your feature.
  • Please, follow these guidelines when writing commit messages.
  • Make sure your branch do not contain merge commits.
  • Open your PR!