1
mirror of https://github.com/xitanggg/open-resume synced 2024-11-03 09:19:21 +01:00

Update README.md to include docker test steps - #8 #14

This commit is contained in:
Xitang 2023-07-02 17:59:05 -07:00
parent 5666e1f405
commit 36a7f9c4e9

View File

@ -54,8 +54,18 @@ OpenResume is created with the NextJS web framework and follows its project stru
## 💻 Local Development ## 💻 Local Development
### Method 1: npm
1. Download the repo `git clone https://github.com/xitanggg/open-resume.git` 1. Download the repo `git clone https://github.com/xitanggg/open-resume.git`
2. Change the directory `cd open-resume` 2. Change the directory `cd open-resume`
3. Install the dependency `npm install` 3. Install the dependency `npm install`
4. Start a development server `npm run dev` 4. Start a development server `npm run dev`
5. Open your browser and visit [http://localhost:3000](http://localhost:3000) to see OpenResume live 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