- Make sure all GIT repos are up to date and commited
- Transfer Parse app to Client
- Confirm functionality of Parse keys in CMS App after transfer
- Confirm functionality of Parse keys in iOS App after transfer
- Confirm functionality of Parse keys in Payments Backend App after transfer
- Get client Braintree Credentials, obtain API Keys
- Set the heroku app to use new Braintree Credentials
- Link the CMS up to the new Braintree portal endpoints
- Make sure iOS app is using proper Braintree Credentials
- Setup New Relic monitoring and email alerts on Payments Backend
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 { View, Text, FlatList } from 'react-native'; | |
const style = { | |
justifyContent: 'center', | |
alignItems: 'center', | |
height: 100, | |
margin: 25, | |
borderWidth: 1, | |
borderColor: 'black', |
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
// Imports | |
import React, { Component } from 'react'; | |
import { | |
Animated, | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
Dimensions, | |
TouchableHighlight, |
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
curl -H "Origin: http://localhost" \ | |
-H "Access-Control-Request-Method: GET" \ | |
-H "Access-Control-Request-Headers: Authorization" \ | |
-X OPTIONS --verbose \ | |
https://api.knod.com/example-endpoint |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<log> | |
<version>1.1</version> | |
<creator> | |
<name>Internet Explorer Network Inspector</name> | |
<version>9.0.8112.16421</version> | |
</creator> | |
<browser> | |
<name>Internet Explorer</name> | |
<version>9.0.8112.16421</version> |
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
*.py[cod] | |
# C extensions | |
*.so | |
# Packages | |
*.egg | |
*.egg-info | |
dist | |
build |
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
App.authManager = Ember.StateManager.create | |
# The "stack" contains the currently logged-in user | |
stack: [] | |
# Callbacks to be ran once the user is authenticated | |
callbacks: {} | |
# Grabs the current auth object and returns it | |
# If callback argument is given, will run the callback function with current auth object as first argument |
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
class Person | |
include MongoMapper::Document | |
one :address, :as => :addressable | |
end | |
class Address | |
include MongoMapper::Document | |
belongs_to :addressable, :polymorphic => true | |
end | |
# Console: |