Skip to content

oss-labs/devfest-2024

Repository files navigation

DevFest 2024

Standard Web App for DevFest's Events.
Show some ❤️ and star the repo to support the project

asd

Getting Started

  1. Fork the repo
  2. Setup Environment
  3. Install project dependencies: npm install
  4. Compiles and hot-reloads for development use npm run dev
  5. Update JSON files from /data and /public/ directory
  6. Upload all the images related to Speakers, Team and Sponsors in /public/speakers/ | /public/team/ with their respective directory and try to upload the images in 1:1 aspect ratio
  7. For the production: npm run generate and then one dir will be created for static hosting

Look at the Nuxt 3 documentation to learn more.

Deployment on Firebase

  1. Install required tools for performing Firebase deployment
    • Install Firebase CLI: npm i -g firebase-tools
  2. Login into Firebase CLI using the following command - firebase login
  3. Now type firebase login command in your Terminal/CMD/Powershell
  4. Update the Firebase Project ID in .firebasesrc file. This value should match the project ID in your Project Settings of the Firebase project you created in the previous section.
  5. Go to the Firebase Console Dashboard and Click on Hosting in the left navigation.
  6. Click on Get Started
  7. Click through all steps till you’re taken to the Hosting page in the console.
  8. You’ll be provided with a ready domain with your project ID. It should look like - <project-id>.web.app or <project-id>.firebaseapp.com
  9. Copy the sub-domain name of the URL provided. In this case, it will be the project ID. However, to be precise, you have to copy the part before .web.aap or .firebaseapp.com. This is your Site ID
  10. Update Firebase.json file, set the site key to Site ID
        {
            "hosting": {
                "site":"Your_Firebase_Hosting_id",
                "public": ".output/public",
                "rewrites": [ {
                    "source": "**",
                    "destination": "/index.html"
                } ],
                "ignore": [
                    "firebase.json",
                    "**/.*",
                    "**/node_modules/**"
                ]
            }
        }
  11. In your terminal at the root directory of the project, build and deploy using the following command
    • firebase deploy

Developed by

  1. Vrijraj Singh
  2. Shivam Singh
  3. Sandali Singh

Technology Stack

Contributing

Awesome! We would greatly appreciate it if you could contribute to all kinds. To help smoothen the process we have a few non-exhaustive guidelines to follow which should get you going in no time.

LICENSE

Check out the developer LICENSE

Facing Any Problem or need any Help?

Write us in the issues section. Our team will try to solve your issue within 10-12 hours.