Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Ryzen-Controller-Team/Preset-API

Repository files navigation

Ryzen Controller Preset API

Install development environment

make install

See the Makefile to know what make install is doing.

You may need to restart your browser to have a fully working https environment.

Development architecture description

Legend:

graph LR
    subgraph container name
    bin[folder binary action]
    end
Loading

Graph:

graph LR
    subgraph reverseproxy
    reverseBin[none traefik serve]
    end

    subgraph yarn
    yarnBin[./app yarn none]
    end

    subgraph admin
    adminBin[./admin yarn start]
    end

    subgraph app
    nginx[./app nginx serve]
    end

    subgraph php
    appBin[./app php serve]
    end

    subgraph db
    postgres[none postgres serve]
    end

    reverseBin --- nginx
    reverseBin --- adminBin
    nginx --- appBin
    adminBin --- nginx
    appBin --- postgres

Loading

Troubleshoot

Using make, I'm getting --argument not recognize errors.

If using --arguments, you must use make like this: make -- action --arguments.