Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝docs: separate bash commands #644

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 38 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,52 @@
To clone and run this application, you'll need [Git](https://git-scm.com) and [Bun](https://bun.sh/) installed on your computer.
From your command line:

### 1. Clone this repository

```bash
git clone https://github.com/OpenUp-LabTakizawa/homepage
```

### 2. Install dependencies with bun

```bash
cd homepage && bun i
```

### 3. Develop the app

```bash
bun dev
```

### 4. Test the app

```bash
# Clone this repository
$ git clone https://github.com/OpenUp-LabTakizawa/homepage
bun test:app
```

# Install dependencies with bun
$ cd homepage && bun i
### 5. E2E Test

# Develop the app
$ bun dev
```bash
bun test:e2e
```

# Test the app
$ bun test:app
### 6. Format and Lint the files

# E2E Test
$ bun test:e2e
```bash
bun lint
```

# Build the app
$ bun run build
### 7. Build the app

# Start the app
$ bun start
```bash
bun run build
```

# Format and Lint the files
$ bun lint
### 8. Start the app

```bash
bun start
```

## 🆚 VSCode
Expand Down
6 changes: 3 additions & 3 deletions bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@

"@pkgjs/parseargs": ["@pkgjs/parseargs@0.11.0", "", {}, "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="],

"@playwright/test": ["@playwright/test@1.51.0-alpha-2025-02-05", "", { "dependencies": { "playwright": "1.51.0-alpha-2025-02-05" }, "bin": { "playwright": "cli.js" } }, "sha512-RSTRQQW+iGL41vOGe54wJKJH6Ca0+aUUOGvY/NYCHAUriL3sVW2bIAfEQaKxJ2MUU5hi4F1EflCtXXSfdqmKDQ=="],
"@playwright/test": ["@playwright/test@1.51.0-alpha-2025-02-06", "", { "dependencies": { "playwright": "1.51.0-alpha-2025-02-06" }, "bin": { "playwright": "cli.js" } }, "sha512-A76fmtU2WXtNvygQxFbFP81oZG9rJ5Da1rOS58aAlXHEP3gqV0D1w1t/t8S6Kl3/Y9dfAV3xFfA1Va8VJJ+uYw=="],

"@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="],

Expand Down Expand Up @@ -326,9 +326,9 @@

"pirates": ["pirates@4.0.6", "", {}, "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="],

"playwright": ["playwright@1.51.0-alpha-2025-02-05", "", { "dependencies": { "playwright-core": "1.51.0-alpha-2025-02-05" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-qLaLGkPLkLO4CD6AHd7zFRHQ/JE/5ZtP7Hl6X5V/p4FgVqMUfc3pnlfMBnfP411RjuMMKPnvFhuhi91uzyNYbw=="],
"playwright": ["playwright@1.51.0-alpha-2025-02-06", "", { "dependencies": { "playwright-core": "1.51.0-alpha-2025-02-06" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-/nJRFWGA9r/oQRL3p90sk7L9v71X0Yoz5obut7g7lwrJxNRE/sIFgiDhplNj1owg6Ucyh3vm/VKzcra8ANxwIw=="],

"playwright-core": ["playwright-core@1.51.0-alpha-2025-02-05", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-IdmnVAg9PuGdLwd2yMQbiTjEAbMrCP8Rov8pILLFwM/7xCWIq8ultVaTJo3jZvAWGCntTNAVXAMMeprXF5A55Q=="],
"playwright-core": ["playwright-core@1.51.0-alpha-2025-02-06", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-ATKNLOtj7iUFMgjJvAbZxfjkT8PmefLc7W4kaCTR58sYxPx6Z52EcyaDV61+ChpzNBkVIM0UaslGIrS8oymadQ=="],

"postcss": ["postcss@8.5.1", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ=="],

Expand Down
Loading