---
id: atlas-architecture
name: Atlasポータル構成
category: 自社・運用基盤
status: 運用中
priority: ★ 通常
updated: 2026-04-13
---

# Atlas プロジェクト構成（ポータル基盤）

## 📝 概要
Atlasブランドの全ポータル・リポジトリ構成と公開URLの基盤情報。サイト修正・デプロイ時に「どのリポジトリのどのファイルを触るか」を即座に判断するためのリファレンス。

## 🏗 ホスティング構成

### Cloudflare（本番）

```
atlas-financials.jp (Cloudflare DNS + Worker)
        |
   [atlas-router Worker]
   ローカル: ~/atlas-router/
        |
        ├── /           → LP（Worker内の静的アセット）
        ├── /reports/*  → Cloudflare Pages「atlas-reports」
        └── /news/*     → Cloudflare Pages「atlas-news」
```

| サービス | 公開URL | Cloudflare | ローカル | デプロイ |
|---|---|---|---|---|
| LP | https://atlas-financials.jp/ | Worker `atlas-router` | `~/atlas-router/public/` | `cd ~/atlas-router && npx wrangler deploy` |
| 決算レポート | https://atlas-financials.jp/reports/ | Pages `atlas-reports` | `~/ui-kabu-reports/` | `deploy_report.py`（wrangler pages deploy） |
| Atlas Daily | https://atlas-financials.jp/news/ | Pages `atlas-news` | `~/ui-kabu-times/` | `deploy_times.py`（wrangler pages deploy） |
| 会員ポータル | https://yskzz121.github.io/ui-kabu-club/ | GitHub Pages（未移行） | `~/ui-kabu-club/` | git push |

### Cloudflare 情報

| 項目 | 値 |
|---|---|
| アカウント | y.uema@uemabento.com |
| Account ID | 38b0cc2d90b3b2f3e5016b8168076f52 |
| ドメイン | atlas-financials.jp |
| NS | chuck.ns.cloudflare.com / sara.ns.cloudflare.com |
| CLI | `npx wrangler` |

## 🗂 GitHubリポジトリ

### AtlasFinancialsJP（新org・Cloudflare連携）

| リポジトリ | 用途 | ローカル |
|---|---|---|
| `atlasfinancialsjp.github.io` | LP ソース | `~/atlasfinancials.github.io` |
| `reports` | 決算レポート | `~/ui-kabu-reports` (remote: neworg) |

### AtlasFinancials（旧org・GitHub Actionsブロック中）

| リポジトリ | 用途 | 状態 |
|---|---|---|
| `atlasfinancials.github.io` | 旧LP | Actionsブロック・Pages errored |
| `reports` | 旧レポート | Actionsブロック・Pages errored |
| `news` | Atlas Daily | ローカル `~/ui-kabu-times` から直接Cloudflareにデプロイ |
| `portal` | 会員ポータル | Actionsブロック |
| `atlas-news` | 旧ニュース | 未使用 |

## ⚙ デプロイスクリプト

### 決算レポート
- **スクリプト**: `~/ui-kabu-reports/deploy_report.py`
- **デプロイ先**: Cloudflare Pages `atlas-reports`（`npx wrangler pages deploy`）
- **バックアップ**: git push origin main（AtlasFinancials/reports）
- **LINE通知**: 自動（LINE Messaging API）

### Atlas Daily（朝刊・号外）
- **スクリプト**: `~/ui-kabu-times/scripts/deploy_times.py`
- **デプロイ先**: Cloudflare Pages `atlas-news`（`npx wrangler pages deploy`）
- **バックアップ**: git push（AtlasFinancials/news）

### LP
- **ソース**: `~/atlas-router/public/`
- **デプロイ**: `cd ~/atlas-router && npx wrangler deploy`

## 💾 ローカルのみのファイル
- `~/Desktop/UI_KabuClub_HP/prototype.html` — 会員ポータルのローカル版
- `~/Desktop/atlas_*.html / .md` — ブランドブック・VI設計書・ガイドライン

## 🎨 ブランドVI
- **カラー**: Navy #1A2540 / Gold #B8912A / Paper #F5F2EC / Alert #8B2020
- **フォント**: Shippori Mincho B1（見出し）/ Inter（英語・数値）/ Noto Sans JP（UI）
- **テーマ**: ダーク/ライトモード対応（localStorage key: `atlas-theme`）
- **モチーフ**: 経緯線・格子・コンパスローズ

## 🔗 関連プロジェクト
- [atlas-domain](atlas-domain.md) — ドメイン接続（Cloudflare移行完了）
- [atlas-launch](atlas-launch.md) — 正式リリース工程
- [morning-news](morning-news.md) — 朝刊多言語化
- [investment-reports](investment-reports.md) — 決算レポート運用

## 📋 仕様書
- [Cloudflareドメイン・サービス立ち上げ仕様書](../specs/cloudflare-domain-setup.md)
