はじまりの大地

このコミットが含まれているのは:
2025-02-25 22:43:13 +09:00
コミット 5d64041c70
108個のファイルの変更20147行の追加0行の削除
+15
ファイルの表示
@@ -0,0 +1,15 @@
Rails.application.routes.draw do
namespace :api do
namespace :v1 do
resources :posts
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
# Can be used by load balancers and uptime monitors to verify that the app is live.
get "up" => "rails/health#show", as: :rails_health_check
# Defines the root path route ("/")
# root "posts#index"
end
end
end