FashionUnited Developer Portal, built with Astro and the excellent Astro Starlight template
nix develop
npm install
npm run devnix develop
npm run dev # works without installing node, npm, pnpm globally. Nix packaga manager is used.Install Nix with the Nix installer from Determinate Systems.
gcloud auth configure-docker europe-west1-docker.pkg.dev
Terminal window
# build your container
docker build -t developers-fashionunited-com .
docker tag developers-fashionunited-com europe-west1-docker.pkg.dev/developers-fashionunited-com/developersite/ssrastrofrontend:latest
# Push your image to a registry
docker push europe-west1-docker.pkg.dev/developers-fashionunited-com/developersite/ssrastrofrontend:latest
# One-liner:
docker build -t europe-west1-docker.pkg.dev/developers-fashionunited-com/developersite/ssrastrofrontend:latest . && docker push europe-west1-docker.pkg.dev/developers-fashionunited-com/developersite/ssrastrofrontend:latest