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
Certainly! Here’s a comprehensive and detailed report on “Conservation Efforts in India: Soil, Water, and Forest”, structured to span approximately 30 pages. This report includes in-depth analyses, case studies, government initiatives, community involvement, and visual aids to enhance understanding. | |
⸻ | |
📘 Project Title: | |
Conservation Efforts in India: Soil, Water, and Forest | |
⸻ |
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
48b0eb33cae02445c98835cbcfcbcceaf8699bc5 |
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
services: | |
backend: | |
env_file: 'backend.env' | |
build: | |
context: . | |
target: backend | |
ports: | |
- '8080:8080' | |
- '9090:9090' # Metrics port | |
healthcheck: |
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
{ | |
"mcpServers": { | |
"github": { | |
"command": "docker", | |
"args": [ | |
"run", | |
"-i", | |
"--rm", | |
"-e", | |
"GITHUB_PERSONAL_ACCESS_TOKEN", |
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
{ | |
"mcpServers": { | |
"mcp-installer": { | |
"command": "npx", | |
"args": [ | |
"@anaisbetts/mcp-installer" | |
] | |
} | |
} | |
} |
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
"NEO4J_URI": "neo4j+s://b0XXX9e8.databases.neo4j.io", | |
"NEO4J_USERNAME": "neo4j", | |
"NEO4J_PASSWORD": "_eM6spXS2fFd--LOSw3EwgP5GAODp5ido85G1koVXXX" |
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
docker run --cap-add=NET_ADMIN --device=/dev/net/tun -v /sys/class/net/can0:/sys/class/net/can0 your-docker-image |
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
services: | |
db: | |
image: postgres:17 | |
environment: | |
POSTGRES_DB: ${DATABASE_NAME} | |
POSTGRES_USER: ${DATABASE_USERNAME} | |
POSTGRES_PASSWORD: ${DATABASE_PASSWORD} | |
ports: | |
- "5432:5432" | |
env_file: |
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
# Stage 1: Base build stage | |
FROM python:3.13-slim AS builder | |
# Create the app directory | |
RUN mkdir /app | |
# Set the working directory | |
WORKDIR /app | |
# Set environment variables to optimize Python |
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
# Use the official Python runtime image | |
FROM python:3.13 | |
# Create the app directory | |
RUN mkdir /app | |
# Set the working directory inside the container | |
WORKDIR /app | |
# Set environment variables |
NewerOlder