「Tepnote-onk」の版間の差分

提供: wikipokpok
移動先: 案内検索
 
4行目: 4行目:
  
 
  <nowiki>$ rails new . -d postgresql --css bootstrap
 
  <nowiki>$ rails new . -d postgresql --css bootstrap
$ bundle install  --without test development
+
$ bundle install  --without test development</nowiki>
 +
 
 
{{font color||yellow|database.yml username:などを確認する (2箇所)}}
 
{{font color||yellow|database.yml username:などを確認する (2箇所)}}
  /config/environments/production.rb config.assets.compile = true
+
 
$ createdb tepnote2_production  
+
  <nowiki>/config/environments/production.rb
 +
config.assets.compile = true</nowiki>
 +
 
 +
<nowiki>$ createdb tepnote2_production  
 
$ rails db:migrate RAILS_ENV=production
 
$ rails db:migrate RAILS_ENV=production
 
$ rails server</nowiki>
 
$ rails server</nowiki>
 
 
/config/environments/production.rb
 

2022年12月10日 (土) 12:00時点における最新版


プロジェクトディレクトリ作成 移動 バージョン確認
$ rails new . -d postgresql --css bootstrap
$ bundle install  --without test development

database.yml username:などを確認する (2箇所)

/config/environments/production.rb
config.assets.compile = true
$ createdb tepnote2_production 
$ rails db:migrate RAILS_ENV=production
$ rails server