Skip to content

konrad-marzec/catalog-3000

Repository files navigation

Catalog 3000

Running

Generate self signed certificate:

openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout packages/server/crt/selfsigned.key -out packages/server/crt/selfsigned.crt

Build docker image:

docker build -t catalog-3000:latest .

Run application:

docker run -p 8443:8443 catalog-3000:latest
openssl genrsa -out  packages/server/crt/token.key 4096
openssl rsa -in  packages/server/crt/token.key -pubout -out  packages/server/crt/token.crt

Developing

Prerequisites

Running project in dev mode

  yarn install
  yarn start:dev

self signed certificate is required

Scripts

The following npm scripts are made available to you in the project root. You can run each of them with yarn run <script-name>.

If you want to limit the scope of a script to a particular package, add the --scope option to the command (e.g., yarn run clean -- --scope=@catalog/client). See [run options][].

clean

Removes node_modules and build directories by running yarn clean for each package.

build

Supports [run options][].

Runs the build scripts for each package.

start:dev

Supports [run options][].

Runs the start:dev scripts for each package.

lint

Supports [run options][].

Runs the lint scripts for each package.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published