-
Notifications
You must be signed in to change notification settings - Fork 37
Added Azure Capability #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@JatinKinraAis thanks a bunch for your contribution! This really rocks! |
nuwang
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Everything looks great. A few minor suggestions.
| admin.site.register(models.AWS, CloudAdmin) | ||
| admin.site.register(models.EC2, EC2Admin) | ||
| admin.site.register(models.S3, S3Admin) | ||
| admin.site.register(models.AZURE, CloudAdmin) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JatinKinraAis Can you please make model name camelcase, like with OpenStack?
| verbose_name_plural = "OpenStack" | ||
|
|
||
|
|
||
| class AZURE(Cloud): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JatinKinraAis Please make model name conform to camel case
|
|
||
| # SECURITY WARNING: don't run with debug turned on in production! | ||
| DEBUG = False | ||
| DEBUG = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JatinKinraAis This should probably remain False
| 'default': { | ||
| 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. | ||
| 'NAME': 'cloudlaunch', # Or path to database file if using sqlite3. | ||
| 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JatinKinraAis These should probably be reverted too.
nuwang
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JatinKinraAis Thanks for the changes. I'll merge it in.
No description provided.