| data | 5 months ago | ||
| images | 5 months ago | ||
| public | 5 months ago | ||
| server | 5 months ago | ||
| Gemfile | 5 months ago | ||
| README.md | 5 months ago | ||
mapproject/ ├── public/ │ ├── snackmap.html # Leaflet 地図+UIページ │ ├── login.html # ログインページ │ ├── register.html # 新規登録ページ │ ├── map.js # マップのJS(Leaflet + CSV処理) │ └── style.css # UIのCSS ├── data/ │ └── snack.csv # スナック店舗の緯度経度CSV ├── server/ │ ├── websocket.rb # WebSocket サーバー │ └── auth_server.rb # ログイン・登録処理(Sinatra) ├── images/ # 画像フォルダ │ ├── snack-icon.png │ ├── favicon-32x32.png │ └── ... ├── Gemfile # faye-websocket等の依存 └── README.md
bundle install ruby auth_server.rb ruby websocket.rb