Skip to content

Commit

Permalink
[FEATURE] add initWithComposer script
Browse files Browse the repository at this point in the history
  • Loading branch information
dmh committed Sep 14, 2016
1 parent df96fe8 commit f4a0fbd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions initWithComposer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash

cd shared
if [ ! -d "db" ]; then
mkdir db
fi
cd db
if [ ! -d .git ]; then
git clone https://github.com/t3kit/t3kit_db.git .
fi;
cd ..

if [ ! -d "site" ]; then
mkdir site
fi
cd site
if [ ! -d .git ]; then
git clone https://github.com/t3kit/t3kit_composer.git .
composer install
fi;

0 comments on commit f4a0fbd

Please sign in to comment.