-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclean.py
executable file
·51 lines (43 loc) · 1.68 KB
/
clean.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/env python
from shutil import rmtree
from subprocess import call
from os import remove
import argparse
def main():
parser = argparse.ArgumentParser(description='''
Clean and re-initialize your project folder''')
parser.add_argument('-git', action='store_true',
default=None,
help='Re-initialize a git repository')
parser.add_argument('-db', nargs=4,
metavar=('dbname','root_password','user','user_password'),
default=['phpdev','helloworld','iouser','iodevpassword'],
help='Change the default database creadentials')
args = parser.parse_args()
# replace the default database creadentials
if args.db:
c = '''
#MYSQL environment setup
MYSQL_ALLOW_EMPTY_PASSWORD=no
MYSQL_DATABASE={name}
MYSQL_ROOT_PASSWORD={rpass}
MYSQL_USER={u}
MYSQL_PASSWORD={upass}
'''.format( name=args.db[0],
rpass=args.db[1],
u=args.db[2],
upass=args.db[3])
print '\n Here is the overriden database config:\n%s\n' % c
with open('./db/env', 'w') as f:
f.writelines(c)
# remove un-needed stuff
rmtree('./.git/', ignore_errors=True)
remove('./README.md')
remove(parser.prog)
# re-initialize a new git repository
if args.git:
call('git init && git add . && git status', shell=True)
print '\nDo not forget to `git remote add origin git@github:You/Repo` ;)\n'
print 'HAPPY CODING (^_^)\n'
if __name__ == '__main__':
main()