parent
f5e3194509
commit
2fdbde6e4b
@ -1,24 +1,11 @@
|
|||||||
# README
|
# README
|
||||||
|
|
||||||
This README would normally document whatever steps are necessary to get the
|
Commandes lancées :
|
||||||
application up and running.
|
|
||||||
|
|
||||||
Things you may want to cover:
|
Question 2.2 :
|
||||||
|
|
||||||
* Ruby version
|
* `rails server`
|
||||||
|
|
||||||
* System dependencies
|
Question 2.3 :
|
||||||
|
|
||||||
* Configuration
|
* `rails generate controller HomeController`
|
||||||
|
|
||||||
* Database creation
|
|
||||||
|
|
||||||
* Database initialization
|
|
||||||
|
|
||||||
* How to run the test suite
|
|
||||||
|
|
||||||
* Services (job queues, cache servers, search engines, etc.)
|
|
||||||
|
|
||||||
* Deployment instructions
|
|
||||||
|
|
||||||
* ...
|
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
# Contrôleur et vue générée avec `rails generate controller HomeController`
|
||||||
|
class HomeController < ApplicationController
|
||||||
|
def welcome
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,2 @@
|
|||||||
|
module HomeHelper
|
||||||
|
end
|
@ -0,0 +1,3 @@
|
|||||||
|
<h1>Les joyeux de la couronne</h1>
|
||||||
|
|
||||||
|
<p>Bienvenue !</p>
|
@ -0,0 +1,7 @@
|
|||||||
|
require "test_helper"
|
||||||
|
|
||||||
|
class HomeControllerTest < ActionDispatch::IntegrationTest
|
||||||
|
# test "the truth" do
|
||||||
|
# assert true
|
||||||
|
# end
|
||||||
|
end
|
Loading…
Reference in new issue