Skip to content

Commit acf6214

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/master'
2 parents 8b6f546 + 740ea6f commit acf6214

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ dist
33
yarn.lock
44
.temp
55
cache
6-
yarn-error.log
6+
yarn-error.log
7+
Session.vim
8+
.DS_Store

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,21 @@ Navigate to `http://localhost:5173` to see your documentation if you run project
2121
2222
#### Build an Image
2323
To build an image, navigate to the root of the project and run this command:
24+
2425
```bash
2526
podman-compose build
2627
```
2728

29+
#### Create `node_modules`
30+
Run this command to install npm packages and generate a `node_modules` directory on your local machine:
31+
32+
```bash
33+
podman-compose run --rm app npm i
34+
```
35+
2836
#### Run the Container
2937
To run a container, navigate to the root of the project and run this command:
38+
3039
```bash
3140
podman-compose up -d
3241
```
@@ -35,6 +44,7 @@ You can visit `http://localhost:3000` to see your documentation.
3544

3645
#### Enter the container
3746
To enter inside of the container, run this command:
47+
3848
```bash
3949
podman-compose exec app sh
4050
```
@@ -43,6 +53,7 @@ You'll be able to run NPM commands inside of the container.
4353

4454
#### Stop the container
4555
After you are done working, run this to cleanup containers:
56+
4657
```bash
4758
podman-compose down
4859
```

0 commit comments

Comments
 (0)