Created
October 17, 2008 03:44
-
-
Save Oshuma/17343 to your computer and use it in GitHub Desktop.
This file contains 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
h1. Things I Always Do | |
* Initialize git repository | |
* Move config/database.yml to config/database.yml.example | |
* rm -f log/*.log | |
* <code>find . \( -type d -empty \) -and \( -not -regex ./\.git.* \) -exec touch {}/.gitignore \;</code> | |
* git add . && git commit -m 'Initial commit.' | |
* Add top-level .gitignore | |
* Write AppConfig | |
* Install restful_authentication. | |
* Clean up the views a bit. | |
* Layout | |
* Forms | |
* Flash messages | |
h1. Bort Configuration Steps | |
* Initialize git repository | |
* git add . && git commit -m 'Initial Bort app.' | |
* Edit config/ | |
* settings.yml | |
* environment.rb | |
* initializers/exception_notifier.rb | |
* Change/Remove default admin account. | |
* Clean up the views a bit. | |
* Layout | |
* Forms | |
* Flash messages | |
* Fix OpenID login | |
* Unique emails | |
* Login should create account if not found. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment