First push

This commit is contained in:
Laurent Raufaste 2013-05-04 17:53:44 -04:00
commit 73973310b1
2 changed files with 17 additions and 0 deletions

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# Pouët.net
Let's try to have a working dev env back
Would be awesome to be able to accept collaborative pull requests too !

12
bin/sync Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
function usage()
{
echo "Usage: $0 <push|pull> <test|live>"
echo " - $0 push test : Push local version to test.pouet.net"
echo " - $0 push live : Push local version to pouet.net"
echo " - $0 pull test : Pull test.pouet.net locally"
echo " - $0 pull live : Pull pouet.net locally"
}
usage