Standard Web App for IOx's Events. Show some ❤️ and star the repo to support the project
- Fork the repo
- Setup Environment
- Install Node.js (v20 or above)
- Install project dependencies:
npm install
- Compiles and hot-reloads for development use
npm run dev
- Update JSON files from
/assets/data
and/public/
directory - Upload all the images related to Speakers, Team and Sponsors in
/public/speakers/
|/public/team/
with their respective directory - For the production:
npm run generate
and then one dir will be created dist
Look at the Nuxt 3 documentation to learn more.
- Install required tools for performing Firebase deployment
- Install Firebase CLI:
npm i -g firebase-tools
- Install Firebase CLI:
- Login into Firebase CLI using the following command -
firebase login
- Now type
firebase login
command in your Terminal/CMD/Powershell - 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. - Go to the Firebase Console Dashboard and Click on Hosting in the left navigation.
- Click on Get Started
- Click through all steps till you’re taken to the Hosting page in the console.
- 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
- 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
- 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/**" ] } }
- In your terminal at the root directory of the project, build and deploy using the following command
firebase deploy
Awesome! Contributions of all kinds are greatly appreciated. To help smoothen the process we have a few non-exhaustive guidelines to follow which should get you going in no time.
Check out the developer LICENSE
Write us in the issues section. Our team will try to solve your issue within 10-12 hours.