Commit 1d4c004e authored by Jakub Nezval's avatar Jakub Nezval
Browse files

feat(initials): preparations

parent c763c2c4
Loading
Loading
Loading
Loading

.env.example

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema

# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB (Preview) and CockroachDB (Preview).
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings

# Defaults to the local database deployed from the `docker-compose.yml` stack

DATABASE_URL="mysql://root@127.0.0.1:3306/turborepo"
+1 −0
Original line number Diff line number Diff line
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

.env
**/dist/*

# dependencies
node_modules

apps/api/README.md

0 → 100644
+1 −0
Original line number Diff line number Diff line
# `api`
 No newline at end of file

apps/api/package.json

0 → 100644
+24 −0
Original line number Diff line number Diff line
{
  "name": "api",
  "version": "0.0.0",
  "private": true,
  "scripts": {
    "dev": "echo 'Add dev script here'",
    "build": "echo 'Add build script here'",
    "test": "echo 'Add test script here'",
    "lint": "echo 'Add lint script here'"
  },
  "dependencies": {
    "@repo/database": "*",
    "@repo/eslint-config": "*",
    "@repo/typescript-config": "*"
  },
  "devDependencies": {
    "@repo/database": "*",
    "@repo/eslint-config": "*",
    "@repo/typescript-config": "*",
    "@types/express": "^4.17.21",
    "@types/node": "^20.14.2",
    "typescript": "^5.4.5"
  }
}

apps/api/tsconfig.json

0 → 100644
+12 −0
Original line number Diff line number Diff line
{
  "extends": "@repo/typescript-config/nextjs.json",
  "compilerOptions": { "plugins": [{ "name": "next" }] },
  "include": [
    "next-env.d.ts",
    "next.config.js",
    "**/*.ts",
    "**/*.tsx",
    ".next/types/**/*.ts"
  ],
  "exclude": ["node_modules"]
}
 No newline at end of file
Loading