Mensch font, Source Code Pro, Webkit, Chrome, Firefox, Kaleidoscope, iTerm, Sequel Pro, Codekit, ImageOptim,
This file contains 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
version: "3.1" | |
services: | |
app: | |
image: icmanage1/envision:envision_verification-latest | |
links: | |
- db | |
- perforce | |
- rabbitmq | |
- splunk |
This file contains 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
version: "3.1" | |
services: | |
app: | |
image: icmanage1/envision:envision-latest | |
links: | |
- db | |
- perforce | |
- rabbitmq | |
- splunk |
This file contains 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
version: "3.1" | |
services: | |
app: | |
image: icmanage1/envision:ipcentral-latest | |
links: | |
- db | |
- perforce | |
env_file: | |
- .env |
This file contains 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
# Docker Additions | |
MYSQL_HOST=db | |
MYSQL_PORT=3306 | |
MYSQL_ROOT_PASSWORD=password | |
MYSQL_ROOT_HOST=% | |
MYSQL_DATABASE=bugs | |
MYSQL_USER=icmAdmin | |
MYSQL_PASSWORD=password |
This file contains 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
version: "3.1" | |
services: | |
perforce: | |
image: icmanage1/envision:perforce-latest | |
networks: | |
main: | |
ipv4_address: 172.19.0.16 | |
env_file: | |
- .env |
This file contains 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
def calculate_effort_hours(**kwargs): | |
"""Calculate effort hours on a file change. | |
The best situation is that we have a lines_delta, on known file types (*.c, *.v, *.va, etc.) | |
In lieu of that use the file size as the file_delta. time_difference is how long the file | |
was checked out as reported in journal file.""" | |
code_lines_add = kwargs.get('code_lines_add', 0) | |
code_lines_add = int(code_lines_add) if code_lines_add is not None else 0 | |
code_lines_minus = kwargs.get('code_lines_minus', 0) |
This file contains 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
def normalize_man_hours(**kwargs): | |
""" | |
If the time_difference is less than 8 hours than return that. | |
If the time difference is greater than 8 hours we need to limit it to 8 hours per | |
day excluding weekends. | |
""" | |
hours, minutes, seconds = kwargs.get('time_difference', "0:0:0").split(":") |
This file contains 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
{% extends "base.html" %} | |
{% comment %} | |
Author: Steven Klass <[email protected]> | |
Copyright 2011-2013 Pivotal Energy Solutions. All rights reserved. | |
See the file LICENSE.txt for licensing information. | |
{% endcomment %} | |
{% block page_title %}Impersonate User List{% endblock %} |
This file contains 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
LOGGING = { | |
'version': 1, | |
'disable_existing_loggers': True, | |
'formatters': { | |
'standard': { | |
'format': "[%(asctime)s] %(levelname)s [%(name)s.%(funcName)s:%(lineno)d] %(message)s", | |
'datefmt': "%d/%b/%Y %H:%M:%S" | |
}, | |
}, | |
'handlers': { |
NewerOlder