From 36a7f9c4e9fda4322b7105c9af1696393bc8f558 Mon Sep 17 00:00:00 2001 From: Xitang Date: Sun, 2 Jul 2023 17:59:05 -0700 Subject: [PATCH] Update README.md to include docker test steps - #8 #14 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index a45e668..2045650 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,18 @@ OpenResume is created with the NextJS web framework and follows its project stru ## 💻 Local Development +### Method 1: npm + 1. Download the repo `git clone https://github.com/xitanggg/open-resume.git` 2. Change the directory `cd open-resume` 3. Install the dependency `npm install` 4. Start a development server `npm run dev` 5. Open your browser and visit [http://localhost:3000](http://localhost:3000) to see OpenResume live + +### Method 2: Docker + +1. Download the repo `git clone https://github.com/xitanggg/open-resume.git` +2. Change the directory `cd open-resume` +3. Build the container `docker build -t open-resume .` +4. Start the container `docker run -p 3000:3000 open-resume` +5. Open your browser and visit [http://localhost:3000](http://localhost:3000) to see OpenResume live