This commit is contained in:
jane 2022-04-01 21:16:05 -04:00
parent aa20cf0f0b
commit 1bf90caeec
17 changed files with 147 additions and 7 deletions

View file

@ -3,6 +3,8 @@ require "active_support/core_ext/integer/time"
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
config.hosts << "dev.j4.pm"
# In the development environment your application's code is reloaded any time
# it changes. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.

View file

@ -1,3 +1,7 @@
Rails.application.routes.draw do
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
get '/portfolio', to: 'svelte#portfolio'
get '/friends', to: 'svelte#friends'
root 'svelte#index'
end