Skip to content

Instantly share code, notes, and snippets.

View kannanhassouna's full-sized avatar
🛝
Hmmm!

Kanna'n Hassouna kannanhassouna

🛝
Hmmm!
View GitHub Profile

EBU

Frontend

# The base image will be used by additional layers
# Only add tools, libraries, etc that will be
# useful in all of the images.
# This is the base layer for the Production Image
ARG hit_master_registry="066561413325.dkr.ecr.us-east-2.amazonaws.com"
FROM ubuntu:22.04 AS baseimage
# Install the packages we'll need in all images
RUN DEBIAN_FRONTEND=noninteractive \
services:
# Celery worker
worker:
build:
context: .
dockerfile: Dockerfile
environment:
- CELERY_BROKER_URL=amqps://bhiunjoe:[email protected]/bhiunjoe
- CELERY_LOG_LEVEL=INFO
- CELERY_QUEUES=quote-parser-ai
const express = require("express");
const { createProxyMiddleware } = require("http-proxy-middleware");
// app definition
const app = express();
// laod cors in the dev environment
const cors = require("cors");
app.use(cors());
{
"success": true,
"credits_left": 99,
"rate_limit_left": 99,
"person": {
"publicIdentifier": "kannanhassouna",
"linkedInIdentifier": "ACoAACcH_-sBuKrALGKcbw28Au2HjupLOgjsu2A",
"memberIdentifier": "654835691",
"linkedInUrl": "https://www.linkedin.com/in/kannanhassouna",
"firstName": "Kanna'n",
<!DOCTYPE html>
<html>
<head>
<title> my first gist </title>
</head>
<body>
<h1> Hello World This Is My First Gist </h1>
</body>
</html>