Skip to content
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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ npm install
```

### 4. 環境変数の設定
> **Note:** `mockup`ブランチを使用している場合は、環境変数の設定は不要です。

`.env.example`をコピーして`.env`ファイルを作成してください。
```bash
cp .env.example .env
Expand All @@ -34,11 +36,11 @@ cp .env.example .env
VITE_API_TARGET="https://your-api-domain.com"
```

> **Note:** `mockup`ブランチを使用する場合は、`.env`ファイルの設定は不要です。

### 5. 開発サーバーの起動
```bash
npm run dev
```

### 6. ブラウザでURLにアクセス
既定では`http://localhost:5173/`が起動します。 <br>
もし 5173 ポートが使用中の場合は、別ポートに割り当てられることがあります。
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>コメントピックアプリ</title>
<title>講義アンケート分析ダッシュボード</title>
</head>
<body>
<div id="root"></div>
Expand Down
Empty file removed public/.gitkeep
Empty file.
13 changes: 13 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file removed src/assets/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function Header({ showBackButton, onBackClick }: HeaderProps) {
)}
<div className="flex items-center gap-2">
<GraduationCap className="h-8 w-8 text-blue-600" />
<span className="text-xl">講義分析システム</span>
<span className="text-xl">講義アンケート分析ダッシュボード</span>
</div>
</div>
<div className="flex items-center gap-3">
Expand Down
27 changes: 0 additions & 27 deletions src/components/figma/ImageWithFallback.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default defineConfig(({ mode }) => {
},
build: {
target: 'esnext',
outDir: 'build',
outDir: 'dist',
},
server: {
proxy: {
Expand Down