Skip to content

superAman07/Python_projects

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Turborepo starter

This Turborepo starter is maintained by the Turborepo core team.

Using this example

Run the following command:

npx create-turbo@latest

What's inside?

This Turborepo includes the following packages/apps:

Apps and Packages

  • docs: a Next.js app
  • web: another Next.js app
  • @repo/ui: a stub React component library shared by both web and docs applications
  • @repo/eslint-config: eslint configurations (includes eslint-config-next and eslint-config-prettier)
  • @repo/typescript-config: tsconfig.jsons used throughout the monorepo

Each package/app is 100% TypeScript.

Utilities

This Turborepo has some additional tools already setup for you:

Build

To build all apps and packages, run the following command:

cd my-turborepo
pnpm build

Develop

To develop all apps and packages, run the following command:

cd my-turborepo
pnpm dev

my-project/ ├── .gitignore ├── .npmrc ├── README.md ├── apps/ │ ├── backendd/ <--- remember "backend" is redundant so try to run "backendd" in the main tree after clone repo on your local
│ │ ├── README.md │ │ ├── Stampede_detection system │ │ ├── src/ │ │ │ ├── main.py │ │ │ ├── stampede_detection_results.csv │ │ │ ├── stampede_detector.py │ │ │ └── visualization.py │ │ │ └── websocket_server.py <---this is the main file to start backend │ │ ├── stampede_events.log │ │ └── yolov8n.pt │ ├── frontend/ <---- to run FE use "npm run dev" │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app/ │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx
│ │ ├── eslint.config.mjs │ │ ├── next-env.d.ts │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── pages/ │ │ │ └── index.tsx │ │ ├── postcss.config.mjs │ │ ├── public/ │ │ ├── tailwind.config.ts │ │ └── tsconfig.json ├── package.json ├── packages/ │ ├── eslint-config/ │ │ ├── base.js │ │ ├── next.js │ │ ├── package.json │ │ ├── react-internal.js │ │ └── README.md │ ├── typescript-config/ │ │ ├── base.json │ │ ├── nextjs.json │ │ ├── package.json │ │ └── react-library.json │ └── ui/ │ ├── eslint.config.mjs │ ├── package.json │ ├── src/ │ │ ├── button.tsx │ │ ├── card.tsx │ │ └── code.tsx │ ├── tsconfig.json │ └── turbo/ │ ├── generators/ │ │ ├── config.ts │ │ └── templates/ │ │ └── component.hbs ├── turbo.json

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 60.4%
  • TypeScript 29.3%
  • JavaScript 9.5%
  • Other 0.8%