GitXplorerGitXplorer
b

Donate-Nashville

public
16 stars
0 forks
3 issues

Commits

List of commits on branch master.
Unverified
c4c5752b25308e8ebd1b209a8dbd3df1895f7154

Changing language in pop-up notification.

committed 14 years ago
Unverified
4683aaec18f28d8b62073b81d345a35c3573fcce

adds "csBackupPlugin"

bbshaffer committed 15 years ago
Unverified
e010a5b906ff8bfd36b881e49d9f7d72c7a209da

allow browsing on "have" items

bbshaffer committed 15 years ago
Unverified
ad93c9f019bc1861787472227a913190df4390c5

adds migrations for "resource_type" field in contact table to keep track of the resources being requested. Also, adds tests to verify this

bbshaffer committed 15 years ago
Unverified
c90ae14e5da3fd3a34919935f7d240849b33a84c

proper verbage in contact email!

bbshaffer committed 15 years ago
Unverified
847b483735170e1de014c044089111083fa13205

Merge branch 'master' of git@github.com:bshaffer/Donate-Nashville

bbshaffer committed 15 years ago

README

The README file for this repository.

Donate Nashville

Setup

Pull down the repository

git clone git@github.com:bshaffer/Donate-Nashville.git
cd Donate-Nashville
git submodule init
git submodule update

Put the symfony library in your project

The easiest way is to do this is to clone symfony into some directory on your computer and then create a symbolic link into your project:

cd /path/to/put/symfony
git clone http://github.com/vjousse/symfony-1.4.git

cd /path/to/Donate-Nashville
ln -s /path/to/put/symfony/symfony-1.4 lib/vendor/symfony

A few more things:

mkdir log
mkdir cache
./symfony project:permissions

Setup your database

To set up your mysql database:

cp config/databases.yml.dist config/databases.yml

Uncomment out the dsn line in front of the mysql string, then update that string with the correct username and password. Finally, run the Symfony command to build the database.

./symfony doctrine:build --all --and-load

Push a new version of the site to the live server

Make sure you have ruby and rubygems installed! Install Capistrano and Capistrano EXT gems

gem install capistrano capistrano-ext --no-ri --no-rdoc

To push an update to the code.

cap production deploy

To push an update to the code with migrations.

cap production deploy:migrations