Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 491 Bytes

development.md

File metadata and controls

33 lines (28 loc) · 491 Bytes

initial configuration

cp docker-compose.example.yml docker-compose.yml
cp .env.local.example .env.local

start docker environment

docker compose up -d
docker compose exec app bash

install latest npm

npm install --legacy-peer-deps

start dev server

npm i --legacy-peer-deps
npm run dev

run eslint + stylelint

npm run lint

create production build & preview

npm run build
npm run preview