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
# Ubuntu 24.04 based Dockerfile for FastAPI API | |
FROM ubuntu:24.04 | |
ENV DEBIAN_FRONTEND=noninteractive | |
ENV PYTHONUNBUFFERED=1 | |
ENV PYTHONDONTWRITEBYTECODE=1 | |
WORKDIR /app | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
# Build essentials and development tools |
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
#!/bin/sh | |
## Download istio version | |
download() { | |
OS="$(uname)" | |
if [ "x${OS}" = "xDarwin" ] ; then | |
OSEXT="osx" | |
else | |
OSEXT="linux" | |
fi |
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
set runtimepath+=~/.vim_runtime | |
source ~/.vim_runtime/vimrcs/basic.vim | |
source ~/.vim_runtime/vimrcs/filetypes.vim | |
source ~/.vim_runtime/vimrcs/plugins_config.vim | |
source ~/.vim_runtime/vimrcs/extended.vim | |
try | |
source ~/.vim_runtime/my_configs.vim | |
catch |
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
rsync -arv -e "ssh -A -i ../keys/Ops-Key.pem" \ | |
--exclude .git \ | |
--exclude pythonenv \ | |
--exclude api/node_modules \ | |
--exclude app \ | |
--exclude compl.1 \ | |
--exclude data/db \ | |
--exclude app/wp_md_azi_incl \ | |
--exclude _md_azi_incl__ \ | |
--exclude wp_md_azi_incl.zip \ |
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
def upload_to_s3(event, context): | |
body=str(event['body']) | |
#"""Assuming Following Body | |
#'------WebKitFormBoundarylaaNaialEQTotwSB\r\nContent-Disposition: form-data; name="file"; filename="test---.html"\r\nContent-Type: text/html\r\n\r\n<html>\n</html>\r\n------WebKitFormBoundarylaaNaialEQTotwSB--\r\n' | |
#""" | |
file_name = body.split(';')[2].split("\r\n")[0].split("=")[1].strip("\"") | |
c_type, c_data = parse_header(event['headers']['content-type']) | |
c_data['boundary'] = bytes(c_data['boundary'], "utf-8") | |
body_file = BytesIO(bytes(event['body'], "utf-8")) | |
form_data = parse_multipart(body_file, c_data) |
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
from sklearn.externals import joblib | |
from boto.s3.key import Key | |
from boto.s3.connection import S3Connection | |
from flask import Flask | |
from flask import request | |
from flask import json | |
BUCKET_NAME = 'your-s3-bucket-name' | |
MODEL_FILE_NAME = 'your-model-name.pkl' | |
MODEL_LOCAL_PATH = '/tmp/' + MODEL_FILE_NAME |
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
#!/bin/bash | |
apt-get update && apt-get install -y apt-transport-https curl | |
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - | |
cat <<EOF >/etc/apt/sources.list.d/kubernetes.list | |
deb https://apt.kubernetes.io/ kubernetes-xenial main | |
EOF | |
apt-get update | |
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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: www | |
labels: | |
app.kubernetes.io/name: www | |
app.kubernetes.io/part-of: www | |
--- |
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
{ | |
"Statement": [ | |
{ | |
"Action": [ | |
"s3:PutObject", | |
"s3:GetObject", | |
"s3:GetObjectVersion" | |
], | |
"Resource": [ | |
"arn:aws:s3:::*", |
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
version: 0.2 | |
phases: | |
install: | |
commands: | |
- echo Restore started on `date` | |
- 'dotnet restore' | |
- echo Restore completed on `date` | |
build: | |
commands: | |
- echo Build started on `date` |
NewerOlder