mirror of
				https://github.com/mmahdium/TorrentMax.git
				synced 2025-11-04 02:58:13 +01:00 
			
		
		
		
	Init
This commit is contained in:
		
							
								
								
									
										24
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
# Nuxt dev/build outputs
 | 
			
		||||
.output
 | 
			
		||||
.data
 | 
			
		||||
.nuxt
 | 
			
		||||
.nitro
 | 
			
		||||
.cache
 | 
			
		||||
dist
 | 
			
		||||
 | 
			
		||||
# Node dependencies
 | 
			
		||||
node_modules
 | 
			
		||||
 | 
			
		||||
# Logs
 | 
			
		||||
logs
 | 
			
		||||
*.log
 | 
			
		||||
 | 
			
		||||
# Misc
 | 
			
		||||
.DS_Store
 | 
			
		||||
.fleet
 | 
			
		||||
.idea
 | 
			
		||||
 | 
			
		||||
# Local env files
 | 
			
		||||
.env
 | 
			
		||||
.env.*
 | 
			
		||||
!.env.example
 | 
			
		||||
							
								
								
									
										75
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,75 @@
 | 
			
		||||
# Nuxt Minimal Starter
 | 
			
		||||
 | 
			
		||||
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
 | 
			
		||||
 | 
			
		||||
## Setup
 | 
			
		||||
 | 
			
		||||
Make sure to install dependencies:
 | 
			
		||||
 | 
			
		||||
```bash
 | 
			
		||||
# npm
 | 
			
		||||
npm install
 | 
			
		||||
 | 
			
		||||
# pnpm
 | 
			
		||||
pnpm install
 | 
			
		||||
 | 
			
		||||
# yarn
 | 
			
		||||
yarn install
 | 
			
		||||
 | 
			
		||||
# bun
 | 
			
		||||
bun install
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Development Server
 | 
			
		||||
 | 
			
		||||
Start the development server on `http://localhost:3000`:
 | 
			
		||||
 | 
			
		||||
```bash
 | 
			
		||||
# npm
 | 
			
		||||
npm run dev
 | 
			
		||||
 | 
			
		||||
# pnpm
 | 
			
		||||
pnpm dev
 | 
			
		||||
 | 
			
		||||
# yarn
 | 
			
		||||
yarn dev
 | 
			
		||||
 | 
			
		||||
# bun
 | 
			
		||||
bun run dev
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Production
 | 
			
		||||
 | 
			
		||||
Build the application for production:
 | 
			
		||||
 | 
			
		||||
```bash
 | 
			
		||||
# npm
 | 
			
		||||
npm run build
 | 
			
		||||
 | 
			
		||||
# pnpm
 | 
			
		||||
pnpm build
 | 
			
		||||
 | 
			
		||||
# yarn
 | 
			
		||||
yarn build
 | 
			
		||||
 | 
			
		||||
# bun
 | 
			
		||||
bun run build
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Locally preview production build:
 | 
			
		||||
 | 
			
		||||
```bash
 | 
			
		||||
# npm
 | 
			
		||||
npm run preview
 | 
			
		||||
 | 
			
		||||
# pnpm
 | 
			
		||||
pnpm preview
 | 
			
		||||
 | 
			
		||||
# yarn
 | 
			
		||||
yarn preview
 | 
			
		||||
 | 
			
		||||
# bun
 | 
			
		||||
bun run preview
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
 | 
			
		||||
							
								
								
									
										7
									
								
								app/pages/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								app/pages/index.vue
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div>
 | 
			
		||||
    <h1 class="text-3xl font-bold underline">
 | 
			
		||||
      Hello world!
 | 
			
		||||
    </h1>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
							
								
								
									
										6
									
								
								app/tailwind.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								app/tailwind.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
@import "tailwindcss";
 | 
			
		||||
@plugin "daisyui";
 | 
			
		||||
@plugin "daisyui/theme" {
 | 
			
		||||
  name: "luxury";
 | 
			
		||||
  default: true;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								eslint.config.mjs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								eslint.config.mjs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
// @ts-check
 | 
			
		||||
import withNuxt from './.nuxt/eslint.config.mjs'
 | 
			
		||||
 | 
			
		||||
export default withNuxt(
 | 
			
		||||
  // Your custom configs here
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										12
									
								
								nuxt.config.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								nuxt.config.ts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
import tailwindcss from "@tailwindcss/vite";
 | 
			
		||||
 | 
			
		||||
// https://nuxt.com/docs/api/configuration/nuxt-config
 | 
			
		||||
export default defineNuxtConfig({
 | 
			
		||||
  compatibilityDate: '2025-07-15',
 | 
			
		||||
  devtools: { enabled: true },
 | 
			
		||||
  modules: ['@nuxt/eslint','@vueuse/motion/nuxt'],
 | 
			
		||||
  vite: {
 | 
			
		||||
    plugins: [tailwindcss()],
 | 
			
		||||
  },
 | 
			
		||||
  css: ["./app/tailwind.css"],
 | 
			
		||||
})
 | 
			
		||||
							
								
								
									
										23
									
								
								package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								package.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "TorrentMax",
 | 
			
		||||
  "type": "module",
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "build": "nuxt build",
 | 
			
		||||
    "dev": "nuxt dev",
 | 
			
		||||
    "generate": "nuxt generate",
 | 
			
		||||
    "preview": "nuxt preview",
 | 
			
		||||
    "postinstall": "nuxt prepare"
 | 
			
		||||
  },
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@nuxt/eslint": "1.10.0",
 | 
			
		||||
    "@tailwindcss/vite": "^4.1.16",
 | 
			
		||||
    "@vueuse/motion": "^3.0.3",
 | 
			
		||||
    "daisyui": "^5.3.10",
 | 
			
		||||
    "eslint": "^9.38.0",
 | 
			
		||||
    "nuxt": "^4.2.0",
 | 
			
		||||
    "tailwindcss": "^4.1.16",
 | 
			
		||||
    "vue": "^3.5.22",
 | 
			
		||||
    "vue-router": "^4.6.3"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										8677
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										8677
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/favicon.ico
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/favicon.ico
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 4.2 KiB  | 
							
								
								
									
										2
									
								
								public/robots.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								public/robots.txt
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
User-Agent: *
 | 
			
		||||
Disallow:
 | 
			
		||||
							
								
								
									
										18
									
								
								tsconfig.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								tsconfig.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
{
 | 
			
		||||
  // https://nuxt.com/docs/guide/concepts/typescript
 | 
			
		||||
  "files": [],
 | 
			
		||||
  "references": [
 | 
			
		||||
    {
 | 
			
		||||
      "path": "./.nuxt/tsconfig.app.json"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "path": "./.nuxt/tsconfig.server.json"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "path": "./.nuxt/tsconfig.shared.json"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "path": "./.nuxt/tsconfig.node.json"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user