Skip to content

khianvictorycalderon/John-Doe

Repository files navigation

John Doe

A demo music artist portfolio website.

DISCLAIMER

This project is for demonstration purposes only and does not represent a real person. Any resemblance to actual individuals is purely coincidental.

To run this project (General Steps):

  1. Clone this repository git clone https://github.com/khianvictorycalderon/John-Doe.git
  2. Run npm install
  3. Run npm run dev

Dependencies & Configuration

The following is a list of installed dependencies and configuration settings used in this project. You don’t need to install anything manually, as all dependencies are already managed through package.json. This section is provided for reference only, to give you insight into how the project was set up.

Dependencies

  • npm install tailwindcss @tailwindcss/vite
  • npm install -D @types/node
  • npm i ogl
  • npm i gh-pages -D

Configuration Dependencies

  • Update src/index.css:
    @import "tailwindcss";
  • Update tsconfig.json:
    "compilerOptions": {
      "baseUrl": ".",
      "paths": {
        "@/*": ["./src/*"]
      }
    }
  • Update tsconfig.app.json:
    "compilerOptions": {
      // ...
      "baseUrl": ".",
      "paths": {
        "@/*": [
          "./src/*"
        ]
      }
      // ...
    }
  • Update vite.config.ts:
    export default defineConfig({
      plugins: [react(), tailwindcss()],
      resolve: {
        alias: {
          "@": path.resolve(__dirname, "./src"),
        },
      },
    })