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
COMPANY_NAME="xyz" | |
export JIRA_PROJECT_KEY="abc" | |
export JIRA_HOME_URL="https://jira.$COMPANY_NAME.com" | |
export JIRA_BROWSER_URL="${JIRA_HOME_URL}/browse" | |
export JIRA_BOARD_ID="596" | |
export JIRA_DONE_TRANSITION_ID="151" | |
export JIRA_START_TRANSITION_ID="21" | |
export JIRA_REVIEW_TRANSITION_ID="61" | |
export OPEN_BROWSER=open |
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
ARG BASE_IMAGE | |
FROM ${BASE_IMAGE} | |
USER root | |
ARG MLFLOW_PORT | |
ARG AWS_REGION | |
ARG DATA_SCIENCE_GROUP | |
ARG CLUSTER_NAME | |
ENV MLFLOW_PORT="${MLFLOW_PORT}" |
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
function first_names() { | |
echo ${CLUSTER_NAME} | |
export CLUSTER_NAME=${CLUSTER_NAME} | |
export AWS_REGION=${REGION} | |
export AWS_DEFAULT_REGION=${AWS_REGION} | |
} | |
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
function first_names() { | |
### Pass the paramters before you execute | |
export CLUSTER_NAME=${CLUSTER_NAME} | |
export AWS_REGION=${REGION} | |
export AWS_DEFAULT_REGION=${AWS_REGION} | |
} | |
## Set account id settings | |
function aws_account_id_settings(){ |
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
# Introduction | |
I have created a Dockerfile which solves the problem of Gunicorn not doing relaods. It just needs the inotify tools as well as the | |
pip module. This solves the problem of reloading the fullstack couchbase python in PyCharm. | |
``` | |
FROM tiangolo/uvicorn-gunicorn:python3.7 | |
LABEL maintainer="Arun George <arun.georg@xyz.com>" | |
# Dependencies for Couchbase |
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
# exclude patterns (uncomment them if you want to use them): | |
# *.[oa] | |
# *~ | |
# idea: | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
# maven: | |
target/ |
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
package apns.netty.queues.single; | |
import io.netty.channel.Channel; | |
import io.netty.channel.ChannelFuture; | |
import io.netty.channel.ChannelFutureListener; | |
import javax.annotation.PreDestroy; | |
import org.apache.log4j.Logger; |
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
/** | |
* | |
*/ | |
package apns.netty.syslog; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.scheduling.annotation.Scheduled; | |
import org.springframework.stereotype.Component; | |
/** |
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
package gcm.netty.handlers; | |
import gcm.netty.codec.GcmBatchMessageEncoder; | |
import gcm.netty.config.GcmConfig; | |
import gcm.netty.constants.GcmProtocolConstants; | |
import gcm.netty.constants.TraceLogs; | |
import gcm.netty.security.GcmSSLContextFactory; | |
import io.netty.channel.ChannelInitializer; | |
import io.netty.channel.ChannelPipeline; |
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
package gcm.netty.handlers; | |
import gcm.netty.constants.ApplicationContextComponents; | |
import gcm.netty.constants.TraceLogs; | |
import gcm.netty.queues.batch.BatchGcmMessageQueue; | |
import gcm.netty.syslog.Statistics; | |
import io.netty.channel.ChannelHandlerContext; | |
import io.netty.channel.SimpleChannelInboundHandler; | |
import io.netty.handler.codec.http.FullHttpResponse; |
NewerOlder