data Create data/snack.csv 5 months ago
images Delete README.md 5 months ago
public Create styles.css 5 months ago
server Update auth_server.rb 5 months ago
Gemfile Update Gemfile 5 months ago
README.md Update README.md 5 months ago
README.md

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