Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.04 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.04 KB

About this project

This is our tech blog website application.

Please visit our blog site.

Technical information

This is a real-world example of Nuxt3 application with the following features.

Docker build & run

% IMAGE=tech-blog-web:latest
% docker build -t ${IMAGE} --build-arg GOOGLE_ADSENSE_ID=${GOOGLE_ADSENSE_ID:-ca-google} --build-arg GOOGLE_ADSENSE_TEST_MODE=${GOOGLE_ADSENSE_TEST_MODE:-true} .
% docker run --rm -p 3000:3000 ${IMAGE}

archive

# after build docker image, you can archive built artifacts by the following command.
% docker run -it -v `pwd`/.build:/tmp/.build ${IMAGE} tar czf /tmp/.build/tech-blog-web.tar.gz /tech-blog-web