Example #1
0
def reset_browsers_to_homepage():
    require('settings', provided_by=[production, staging])

    payload = {}

    now = datetime.now().strftime('%s')

    payload['timestamp'] = now
    payload['homepage'] = True

    with open('www/live-data/timestamp.json', 'w') as f:
        json.dump(payload, f)

    utils.deploy_json('www/live-data/timestamp.json', 'live-data/timestamp.json')
Example #2
0
def reset_browsers_to_homepage():
    require('settings', provided_by=[production, staging])

    payload = {}

    now = datetime.now().strftime('%s')

    payload['timestamp'] = now
    payload['homepage'] = True

    with open('www/live-data/timestamp.json', 'w') as f:
        json.dump(payload, f)

    utils.deploy_json('www/live-data/timestamp.json',
                      'live-data/timestamp.json')
Example #3
0
def reset_browsers():
    """
    Deploy a timestamp so the client will reset their page. For bugfixes
    """
    require('settings', provided_by=[production, staging])

    payload = {}

    now = datetime.now().strftime('%s')

    payload['timestamp'] = now
    payload['homepage'] = False

    with open('www/live-data/timestamp.json', 'w') as f:
        json.dump(now, f)

    utils.deploy_json('www/live-data/timestamp.json', 'live-data/timestamp.json')
Example #4
0
def reset_browsers():
    """
    Deploy a timestamp so the client will reset their page. For bugfixes
    """
    require('settings', provided_by=[production, staging])

    payload = {}

    now = datetime.now().strftime('%s')

    payload['timestamp'] = now
    payload['homepage'] = False

    with open('www/live-data/timestamp.json', 'w') as f:
        json.dump(now, f)

    utils.deploy_json('www/live-data/timestamp.json',
                      'live-data/timestamp.json')