normative-io / company-service-public

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Company Service

A set of microservices that provide clients a way to look up metadata about companies across the world.

Project Structure

This repo contains several loosely-coupled microservices. To develop on a particular microservice, cd into the corresponding folder.

  • api/ - the entrypoint for external clients.
  • scraper-service/ - subsystem that provides on-demand scraping of company metadata.
  • batch-scrapers/ - batch scrapers which will be run peridically to pre-fill company-service with company metadata.

Building and running

To get everything up and running, there are a few routes to go:

  • Running on host system, for development
  • Running dockerized with a local image, for testing purposes
  • Running in Kubernetes with a remote image

Take either approach, depending on your use-case, but rarely both or a combination of the two.

Running on host system (for development)

Runnning locally means starting each service independently. Each service has its own README file which describes the process, but it is generally something along the lines of:

cd <service>
nvm use
npm install
npm start

See each service's .env file for configuration options.

Running dockerized with a local image (for testing)

Running in docker is as simple as:

docker compose up

To ensure that what you are running is the latest, you may want to make really sure that everything is rebuilt before running:

docker compose build --no-cache
docker compose up

Some services use a different dotenv file when running in Docker, see the docker-compose.yml to find the relevant dotenv file's.

Running in Kubernetes with a remote image (API only)

See kube/README.md.

Known issues

There's no place like the actual code to document issues. Search for TODO to see small-ish issues, and GOTCHA for longer design discussions.

Contributing

This project is maintained by Normative but currently not actively seeking external contributions. If you however are interested in contributing to the project please sign up here or come join us.

Thank you to all the people from Google.org who were critical in making this project a reality!

License

Copyright (c) Meta Mind AB. All rights reserved.

Licensed under the Apache-2.0 license

About

License:Apache License 2.0


Languages

Language:TypeScript 80.9%Language:Python 11.2%Language:Shell 3.5%Language:Makefile 2.8%Language:JavaScript 0.8%Language:Dockerfile 0.8%