This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 初回リリースまで | |
| - [ ] 1.awsのcloud9でクラウド上に開発環境を構築 | |
| - [ ] 2.要望を元に作成 | |
| - [ ] 3.バックアップ系プラグインでエクスポート | |
| - [ ] 4.本番サーバーにWP構築、インポート | |
| - [ ] 5.ドメイン設定 | |
| プラグイン等で対応できるレベルであれば簡単に開発環境でテスト後、直接拡張 | |
| スペック等に指定なければさくらのレンタルサーバーを使用 | |
| さくらの管理画面から作れる。sslが無料で設定できるのでトータルのコストが安く済む |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker-compose up -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -r --strip-trailing-cr -x "ディレクトリ" -q [比較対象1] [比較対象2] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Enumの実装クラス | |
| */ | |
| Enum = function() { | |
| this._enums = []; | |
| this._lookups = {}; | |
| }; | |
| /** | |
| * enumを取得する |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sed -i 's/\r//' ファイル |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 2 | |
| jobs: | |
| build: | |
| docker: | |
| - image: ruby:2.4-alpine | |
| working_directory: ~/repo | |
| steps: | |
| - setup_remote_docker: | |
| reusable: true | |
| - run: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group :development do | |
| gem 'rails-erd' | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git log 対象のファイル |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require './sub' | |
| class Main | |
| @サブ変数 = サブクラス.new(args1 => 値1, args2 => 値2) | |
| @サブ変数.テンプレートメソッド | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require './SuperCreator' | |
| class Main | |
| creator = SuperCreator.new(:name1 => '製品1', :name2 => '製品2') | |
| creator.factory_method() | |
| end |
OlderNewer