This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import json | |
| from datetime import datetime | |
| dry_run = False | |
| region = 'us-east-1' | |
| delete_older_than = 60 | |
| repository = 'repository_name' | |
| ecr_get_cmd = 'aws --region {} ecr describe-images --repository-name "{}"'.format(region, repository) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import { reduxForm, Field } from 'redux-form'; | |
| class Signin extends Component { | |
| onSubmit({ email, password }) { | |
| console.log(email); | |
| console.log(password); | |
| } | |
| renderField(field) { |