- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
Facillitering:
- Læs og fortolk CV uanset format eller stil, gem resultatet i struktureret format, fx JSON
- Tag det strukturerede format og vis det i format beskrevet i fritekst
- Brug fritekst til at søge i gemte CV'er
This repository contains our team's submission for the Bremen Hackathon 2025. We've created [brief description of your project and its purpose] using Vue 3 Composition API and Firebase.
- 🚀 [Key feature 1]
- 💡 [Key feature 2]
- 🔧 [Key feature 3]
- 🔍 [Key feature 4]
- 🔥 Firebase Authentication
- 📊 Realtime Firebase Database
- 🖼️ Firebase Storage
- 🚀 Firebase Hosting
[Include screenshots, GIFs, or links to a live demo if available]
- Frontend: Vue 3 with Composition API
- State Management: Vue 3 Reactivity + Pinia
- UI Framework: [e.g., Vuetify, TailwindCSS]
- Backend & Database: Firebase
- Firestore for database
- Firebase Authentication
- Firebase Storage
- Firebase Functions (serverless)
- Firebase Hosting
- Additional Tools: [Any other tools or libraries]
- Node.js (v16 or higher)
- npm or yarn
- Firebase CLI (
npm install -g firebase-tools
) - A Firebase account
# Install Firebase CLI globally if not already installed
npm install -g firebase-tools
# Login to Firebase
firebase login
# Create a new Firebase project (interactive)
firebase projects:create
# Alternatively, create with specific project ID
# firebase projects:create --project-id YOUR_PROJECT_ID
# List your Firebase projects to verify creation
firebase projects:list
- Visit the Firebase Console
- Select your project
- Enable the required services:
# Enable Firestore
firebase firestore:enable
# Enable Authentication services
# First, visit the Firebase Console -> Authentication -> Sign-in method
# Then activate your preferred auth providers (Email/Password, Google, etc.)
# Enable Storage
firebase storage:enable
# Enable Functions (if needed)
firebase functions:enable
# Clone the repository
git clone https://github.com/yourusername/2025-04-bremen-hack.git
# Navigate to the project directory
cd 2025-04-bremen-hack
# Install dependencies
npm install
# Initialize Firebase in your project
firebase init
# Select the following features when prompted:
# - Firestore
# - Functions (optional)
# - Hosting
# - Storage
# - Emulators (for local development)
# Create a .env file for Firebase config
cp .env.example .env
Create a Firebase configuration file at src/firebase/config.js
:
// src/firebase/config.js
import { initializeApp } from 'firebase/app'
import { getFirestore } from 'firebase/firestore'
import { getAuth } from 'firebase/auth'
import { getStorage } from 'firebase/storage'
const firebaseConfig = {
apiKey: import.meta.env.VITE_FIREBASE_API_KEY,
authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN,
projectId: import.meta.env.VITE_FIREBASE_PROJECT_ID,
storageBucket: import.meta.env.VITE_FIREBASE_STORAGE_BUCKET,
messagingSenderId: import.meta.env.VITE_FIREBASE_MESSAGING_SENDER_ID,
appId: import.meta.env.VITE_FIREBASE_APP_ID
}
// Initialize Firebase
const app = initializeApp(firebaseConfig)
// Initialize services
const db = getFirestore(app)
const auth = getAuth(app)
const storage = getStorage(app)
export { db, auth, storage }
Create a .env
file in the project root:
VITE_FIREBASE_API_KEY=your-api-key
VITE_FIREBASE_AUTH_DOMAIN=your-project-id.firebaseapp.com
VITE_FIREBASE_PROJECT_ID=your-project-id
VITE_FIREBASE_STORAGE_BUCKET=your-project-id.appspot.com
VITE_FIREBASE_MESSAGING_SENDER_ID=your-messaging-sender-id
VITE_FIREBASE_APP_ID=your-app-id
To get these values:
- Go to Firebase Console -> Project settings -> General
- Scroll down to "Your apps" section
- Click on the web app or create a new one
- Copy the configuration values
# Start the development server with Firebase emulators
firebase emulators:start
npm run dev
[Provide instructions on how to use your application]
For secure data access, update your Firestore rules in firestore.rules
:
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// Lock down access by default
match /{document=**} {
allow read, write: if false;
}
// Allow authenticated users to read public data
match /public/{document} {
allow read: if request.auth != null;
}
// Allow users to read and write their own data
match /users/{userId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
}
}
}
For secure file storage, update your Storage rules in storage.rules
:
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
# Build the application
npm run build
# Deploy to Firebase
firebase deploy
# Deploy only specific services
firebase deploy --only hosting
firebase deploy --only firestore:rules
firebase deploy --only storage:rules
firebase deploy --only functions
# View your deployed application
firebase open hosting:site
[Include any awards or recognition your project received during the hackathon]
This project is licensed under the MIT License - see the LICENSE file for details.
- [Bremen Hackathon 2025 organizers]
- [Sponsors]
- Vue.js team for the amazing framework
- Firebase team for their comprehensive backend services