Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- MySQL
- Java
- install
- 설치
- RUBY
- with_indifferent_access
- 사용중인포트검색
- Orange Pi 3B
- after_update
- 도커
- Ruby on Rails
- Visual Studio Code
- 코틀린
- after_save
- docker
- mac
- Kotlin
- Migrate
- Rails
- ubuntu
- change_column
- 우분투
- 주차장 시스템
- 오랜지파이
- Time.znoe.now
- docket
- 우분투 24
- 쿠버네티스
- 이것이 자바다
- change_column_null
Archives
- Today
- Total
목록Back-End /Ruby On Rails (34)
중고 신입이 개발해보기..
Rails 5.2 Active Storage and beyond
관련 링크 모음 https://evilmartians.com/chronicles/rails-5-2-active-storage-and-beyond $ ./bin/rails active_storage:install $ ./bin/rake db:migrate
Back-End /Ruby On Rails
2018. 7. 12. 18:33
Rails Routes
Ruby On Rails에서 라우트 하는것을 .. - 브라우저에서 Routes를 확인할때 http://localhost:3000/rails/info/routes- 콘솔에선 $ rake routes 컨트롤러를 만들면 $ ./bin/rails g controller Infobox index routes.rb 파일에 get 'infobox/index' 라고 자동으로 만들어진다.. 컨트롤러 이름뒤에 index를 추가해놓아서 그런거임 resources :kinghts Helper HTTP Verb Path Controller#Action Path / Url knights_path GET /knights(.:format) knights#index POST /knights(.:format) knights#create..
Back-End /Ruby On Rails
2018. 4. 25. 15:30