Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 979 Bytes

README.md

File metadata and controls

47 lines (34 loc) · 979 Bytes

ALEX-CLIENT

Dev Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Docker Image Build

First, configure buildx

docker buildx create --name builder
docker buildx use builder
docker buildx inspect --bootstrap

Or, if you already have an existing buildx image, just start Docker and the container associated with the image. Then:

docker buildx ls

Then build, tag and push image with the following:

docker buildx build \
    --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 \
    -t alex-client:latest . --push