⚙️ Automated Development Environment in the Cloud ⛅

⛅ Expertise in developing modern cloud-native applications ⚡ and data analytics 🔥
Search for a command to run...

⛅ Expertise in developing modern cloud-native applications ⚡ and data analytics 🔥
No comments yet. Be the first to comment.
[Internal Press Release] Today we announce the general availability of ADLC (Agent Development Lifecycle) Framework v1.3.0, an open-source enterprise governance framework for AI-powered CloudOps, DevSecOps, and FinOps automation. 📊 The Problem C...
Hybrid Testing Strategy 💰 ROI: 35% Velocity ↑ and 90% Cost Reduction
Comprehensive Network Analysis of Enterprise Central Network Hub using Production-Ready Enterprise-Grade Agent SDLC Framework
🔥 Efficient Agile SDLC Workflow to build & publish Runbooks PyPI 🥇
Part 1. AWS Architecture Diagram

⬆️Skills to build and run Modern Applications ⚡ using Open-Source 🆓, Cloud-Native 🌥️ and Data Analytics 🔥.
14 posts
🔥 Agentic AI Enterprise Applications focus on autonomously achieve complex business goals, rethinking workflows with Agentic AI, and driving business value through cost, quality, speed, and scale. ⚡
🎯 Deliverables:
Gitpod Cloud Development EnvironmentModern engineering teams are embracing cloud technologies and automating whenever possible, including infrastructure, CI/CD build pipelines, linting/formatting, and even writing code, to avoid costly errors and focus on product and customer value creation.
We will demonstrate how to use Gitpod to spin up an automated development environment in seconds so that you are always ready to code. After completing the guided tutorial below, you will be able to build and deploy open-source 🆓 Shopify-like Digital Commerce 💰 in minutes.
You can quickly set up a complete development environment in your browser with only 1-click and begin coding immediately.
You will need to authorize your GitHub account before you can use Gitpod.
Upon clicking on Gitpod, a workspace will be opened in the browser that contains:
gp init
.gitpod.yml## List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: 1.1. backend
## working directory as `/ecommerce/backend`
before: |
npm install @medusajs/medusa-cli@latest -g
cd backend
init: |
npm install
command: |
npm run dev
# gp sync-done finished
openMode: split-left
## List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 9000
onOpen: ignore
## List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: 1. backend
## working directory as `/ecommerce/backend`
before: |
npm install @medusajs/medusa-cli@latest -g
cd backend
init: |
npm install
command: |
npm run dev
- name: 2. backend (test)
## working directory as `/ecommerce/backend`
before: |
cd backend
init: |
# echo "curl -X GET localhost:9000/store/products | python -m json.tool"
echo "npm run seed"
command: |
echo "curl -X GET localhost:9000/store/products | python -m json.tool"
## List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 9000
onOpen: ignore
# - port: 8000
# onOpen: open-browser
# - port: 7000
# onOpen: open-preview
cd backend
##
npm run seed
##
curl -X GET localhost:9000/store/products | python -m json.tool
docker compose on GitpodThis Gitpod Docker Compose provides you with pre-built, ephemeral development environments in the cloud ⛅
medusa-config.js:module.exports = {
projectConfig: {
// /** Option1 - SQLite (default): Development-like Environment */
// database_database: "./ecommerce.sql",
// database_type: "sqlite",
/** Option2 - PostgresQL: For more production-like environment */
redis_url: REDIS_URL,
database_url: DATABASE_URL, //postgres connectionstring
database_type: "postgres",
store_cors: STORE_CORS,
admin_cors: ADMIN_CORS,
},
plugins,
};
docker compose task## List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: 2.1. backend >> docker compose
## working directory as `/ecommerce/backend`
before: |
npm install @medusajs/medusa-cli@latest -g
cd backend
# init: |
# docker compose pull
command: |
docker compose up --build
# gp sync-done finished
openMode: split-left
- name: 2.2. backend >> docker compose (test)
## working directory as `/ecommerce/backend`
before: |
cd backend
init: |
# curl -X GET localhost:9000/store/products | python -m json.tool
echo "docker image ls"
echo "docker container ls"
echo "docker exec ecommerce-backend medusa seed -f ./data/seed.json"
command: |
# gp sync-await finished && \
echo "curl -X GET localhost:9000/store/products | python -m json.tool"
openMode: split-right
## List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 9000
onOpen: ignore
# - port: 8000
# onOpen: open-browser
# - port: 7000
# onOpen: open-preview
express-redis## List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: Start Redis Stack
## working directory as `/README/lab1.express-redis`
before: |
cd README/lab1.express-redis
init: |
docker compose pull
command: |
alias redis-cli="docker exec -it redis-stack redis-cli"
echo "Use redis-cli to interact with Redis here."
docker compose up -d
gp sync-done finished
openMode: split-left
- name: Start Express Application
## working directory as `/README/lab1.express-redis`
before: |
cd README/lab1.express-redis/backend
init: |
npm install
command: |
gp sync-await finished && \
npm run dev
openMode: split-right
- port: 9999
onOpen: open-preview
- port: 6379
onOpen: ignore
Upon clicking on Gitpod, a workspace will be opened in the browser that contains:
elasticsearch-logstash-kibana## List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: Start ELK Elasticsearch Logstash Kibana
## working directory as `/README/lab2.elasticsearch-logstash-kibana`
before: |
cd README/lab2.elasticsearch-logstash-kibana
init: |
docker compose pull
command: |
docker compose up -d
gp sync-done finished
openMode: split-left
- name: Test ELK
## working directory as `/README/lab2.elasticsearch-logstash-kibana`
before: |
cd README/lab2.elasticsearch-logstash-kibana
init: |
echo "[Test ELK] init ..."
command: |
gp sync-await finished && \
echo "[Test ELK] command ..."
echo "PORTS >> 5601 >> Open Preview"
openMode: split-right
