remote dev: Add code and instructions for creating digital ocean droplets.

Mostly copied from the zulip/zulip-gci repository, but with some changes to
wordings and code cleanup for linters.
This commit is contained in:
Rishi Gupta
2017-10-28 18:02:58 -07:00
committed by Tim Abbott
parent b31af80c5f
commit dec4b9ed93
9 changed files with 469 additions and 2 deletions

View File

@@ -260,6 +260,7 @@ def build_custom_checkers(by_lang):
'bad_lines': ["'foo':bar", "'foo':1"]},
{'pattern': "^\s+#\w",
'strip': '\n',
'exclude': set(['tools/droplets/create.py']),
'description': 'Missing whitespace after "#"',
'good_lines': ['a = b # some operation', '1+2 # 3 is the result'],
'bad_lines': [' #some operation', ' #not valid!!!']},