index int64 0 0 | repo_id stringclasses 596
values | file_path stringlengths 31 168 | content stringlengths 1 6.2M |
|---|---|---|---|
0 | lc_public_repos | lc_public_repos/langchain-extract/docker-compose.yml | name: langchain-extract
services:
postgres:
# Careful if bumping postgres version.
# Make sure to keep in sync with CI
# version if being tested on CI.
image: postgres:16
expose:
- "5432"
ports:
- "5432:5432"
environment:
POSTGRES_DB: langchain
POSTGRES_USER: langc... |
0 | lc_public_repos | lc_public_repos/langchain-extract/Dockerfile | # All directory paths for COPY commands are relative to the build context
# Ensure this python version stays in sync with CI
FROM python:3.11-slim as base
WORKDIR /backend
# set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV POETRY_HOME="/opt/poetry"
ENV MYPYPATH="/app/src/stubs"
# Us... |
0 | lc_public_repos | lc_public_repos/langchain-extract/LICENSE | MIT License
Copyright (c) 2024-Present Langchain AI
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publi... |
0 | lc_public_repos | lc_public_repos/langchain-extract/README.md | 🚧 Under Active Development 🚧
This repo is under active developments. Do not use code from `main`. Instead please checkout code from [releases](https://github.com/langchain-ai/langchain-extract/releases)
This repository is not a library, but a jumping point for your own application -- so do not be surprised to find ... |
0 | lc_public_repos/langchain-extract | lc_public_repos/langchain-extract/frontend/Dockerfile | FROM node:18-alpine AS base
FROM base AS base-deps
WORKDIR /app
COPY --link ./yarn.lock ./package.json ./.yarnrc.yml ./
FROM base AS installer
WORKDIR /app
COPY --link --from=base-deps /app/package.json ./package.json
COPY --link --from=base-deps /app/yarn.lock ./yarn.lock
COPY --link .yarnrc.yml .
RUN yarn install... |
0 | lc_public_repos/langchain-extract | lc_public_repos/langchain-extract/frontend/tsconfig.json | {
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resol... |
0 | lc_public_repos/langchain-extract | lc_public_repos/langchain-extract/frontend/yarn.lock | "# This file is generated by running \"yarn install\" inside your project.\n# Manual changes might b(...TRUNCATED) |
0 | lc_public_repos/langchain-extract | lc_public_repos/langchain-extract/frontend/.eslintrc.json | "{\n \"plugins\": [\"react\", \"@typescript-eslint\", \"eslint-plugin-import\"],\n \"env\": {\n (...TRUNCATED) |
0 | lc_public_repos/langchain-extract | lc_public_repos/langchain-extract/frontend/.yarnrc.yml | nodeLinker: node-modules
|
0 | lc_public_repos/langchain-extract | lc_public_repos/langchain-extract/frontend/.env.example | "# Only set for non development builds.\n# Development builds default to `http://localhost:8000`\nNE(...TRUNCATED) |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 5