Skip to content

Latest commit

 

History

History
78 lines (51 loc) · 1.09 KB

File metadata and controls

78 lines (51 loc) · 1.09 KB

Vendee example web

cover

build

example.vendee.top

Installation

yarn install && yarn env

Start development

yarn start

Build production and run on localhost

yarn prod

Build production

yarn build

Remove build

yarn rm

Lint

yarn lint
yarn fix

Up local

Up infrastructure

docker network create traefik
docker compose --env-file .env.local up

Deploy on server

Set secrets

  • SSH_DEPLOY_PRIVATE_KEY - e.g. AAAwEAA ...

Push code and check GitHub actions

[GitHub action]https://github.com/kokkekpek/vendee-example-web/actions/workflows/build-and-deploy.yaml)

Docker network scheme

flowchart TD
    %% Traefik
    traefik(traefik)-->|traefik|vendee-example-web-nginx(NGINX)

subgraph Vendee example
    vendee-example-web-nginx
end
Loading