Last active
June 27, 2022 15:40
-
-
Save mcansh/8e4bfd21f2f8de96ab00989d8aa15154 to your computer and use it in GitHub Desktop.
This file contains 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
npx create-remix@latest --template remix-run/indie-stack test-999 | |
? TypeScript or JavaScript? TypeScript | |
? Do you want me to run `npm install`? Yes | |
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-url#deprecated | |
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated | |
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-resolve#deprecated | |
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated | |
npm WARN deprecated [email protected]: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject. | |
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-resolve#deprecated | |
added 1339 packages, and audited 1340 packages in 18s | |
233 packages are looking for funding | |
run `npm fund` for details | |
found 0 vulnerabilities | |
💿 Running remix.init script | |
> setup | |
> prisma generate && prisma migrate deploy && prisma db seed | |
Environment variables loaded from .env | |
Prisma schema loaded from prisma/schema.prisma | |
✔ Generated Prisma Client (3.15.2 | library) to ./node_modules/@prisma/client in 1.54s | |
You can now start using Prisma Client in your code. Reference: https://pris.ly/d/client | |
``` | |
import { PrismaClient } from '@prisma/client' | |
const prisma = new PrismaClient() | |
``` | |
Environment variables loaded from .env | |
Prisma schema loaded from prisma/schema.prisma | |
Datasource "db": SQLite database "data.db" at "file:./data.db?connection_limit=1" | |
SQLite database data.db created at file:./data.db?connection_limit=1 | |
1 migration found in prisma/migrations | |
Applying migration `20220307190657_init` | |
The following migration have been applied: | |
migrations/ | |
└─ 20220307190657_init/ | |
└─ migration.sql | |
All migrations have been successfully applied. | |
Environment variables loaded from .env | |
Running seed command `node --require tsconfig-paths/register prisma/seed.js` ... | |
Database has been seeded. 🌱 | |
🌱 The seed command has been executed. | |
Setup is complete. You're now ready to rock and roll 🤘 | |
Start development with `npm run dev` | |
💿 That's it! `cd` into "/Users/logan/test-999" and check the README for development and deploy instructions! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment