instruction stringlengths 25 121 | input stringclasses 1
value | output stringlengths 0 296k |
|---|---|---|
Describe the contents of the file components.json. | {
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "app/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils... | |
Describe the contents of the file next.config.mjs. | /** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'coin-images.coingecko.com',
port: '',
pathname: '/**',
},
{
protocol:'https',
hostname:"lh3.googleusercontent.com",
po... | |
Describe the contents of the file next-env.d.ts. | /// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
| |
Describe the contents of the file tailwind.config.ts. | import type { Config } from "tailwindcss"
const config = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
... | |
Describe the contents of the file .eslintrc.json. | {
"extends": "next/core-web-vitals"
}
| |
Describe the contents of the file package.json. | {
"name": "binance-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build",
"start": "next start ",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@next-auth/mongodb-adapter": "^1.1.3",
... | |
Describe the contents of the file Dockerfile. | FROM node:16-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
WORKDIR /app/db
RUN npx prisma generate
WORKDIR /app
RUN npm run build
EXPOSE 3000
CMD [ "npm" , "start" ] | |
Describe the contents of the file tsconfig.json. | {
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "pr... | |
Describe the contents of the file .env. | DATABASE_URL=postgres://avnadmin:AVNS_Z4AxBvGySZYS7c-SVVh@pg-2f95c8c3-saimanideepnaidu-669c.l.aivencloud.com:13599/defaultdb?sslmode=require
#Razorpay
RAZORPAY_KEY_ID =rzp_live_ysF8drCMbc7We6
RAZORPAY_KEY_SECRET=kvVknh4VWlU7PBPI9iVQB3Ar
#Google
GOOGLE_CLIENT_SECRET=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
GOOGLE_CLIENT_I... | |
Describe the contents of the file postcss.config.mjs. | /** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
},
};
export default config;
| |
Describe the contents of the file docker-compose.yml. | version: '3.8'
services:
app:
image: node:14
volumes:
- .:/app
working_dir: /app
command: npm run dev
ports:
- 3000:3000
depends_on:
- db
db:
image: postgres:13
volumes:
- ./db:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- ... |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 3