nordabiz/README.md

420 lines
14 KiB
Markdown

# Norda Biznes Hub
**Production-ready Flask web application** providing a business directory and networking platform for members of the Norda Biznes association from Wejherowo and surrounding area.
**🚀 Status:** LIVE in production since 2025-11-23
**🌐 URL:** https://nordabiznes.pl
**📊 Coverage:** 80 member companies (100% of Norda Biznes membership)
## Overview
Norda Biznes Hub is a **Flask-powered web platform** built with PostgreSQL, featuring AI-driven search capabilities, comprehensive company profiles, and administrative tools for managing member data. The platform integrates Google Gemini AI for intelligent company recommendations, automated news monitoring via Brave Search API, and comprehensive SEO/social media auditing tools.
**Key Capabilities:**
- **Company Directory** - Complete catalog of 80 member companies with verified data
- **AI Chat Assistant** - Google Gemini 2.5 Flash-powered conversational search
- **Advanced Search** - Multi-mode search with FTS, fuzzy matching, and synonym expansion
- **Admin Panels** - News moderation, SEO audit, social media tracking, GBP/IT audits
- **User Authentication** - Secure login with email confirmation and role-based access
- **RESTful API** - JSON endpoints for programmatic access to company data
## Obecne funkcjonalności
### Wersja 1.0
- Lista 80 firm członkowskich
- Wyszukiwarka firm (nazwa, opis)
- Filtrowanie po kategoriach:
- IT & Technologie
- Budowlane
- Usługi
- Produkcja
- Handel
- Responsywny design (mobile, tablet, desktop)
- Nowoczesny interfejs użytkownika
## Project Structure
```
nordabiz/
├── app.py # Main Flask application (routes, auth, API)
├── database.py # SQLAlchemy models (20+ tables)
├── gemini_service.py # Google Gemini AI integration
├── nordabiz_chat.py # AI chat engine with company context
├── search_service.py # Unified search (FTS, fuzzy, synonyms)
├── email_service.py # Microsoft Graph email integration
├── krs_api_service.py # Polish business registry API
├── gbp_audit_service.py # Google Business Profile audit
├── it_audit_service.py # IT infrastructure audit
├── templates/ # Jinja2 HTML templates (30+ files)
│ ├── base.html # Base template with navigation and auth
│ ├── index.html # Company directory listing
│ ├── company_detail.html # Detailed company profile page
│ ├── chat.html # AI chat interface
│ ├── admin/ # Admin dashboards and tools (15 files)
│ ├── auth/ # Authentication flows (5 files)
│ ├── forum/ # Community forum (3 files)
│ ├── calendar/ # Events calendar (4 files)
│ ├── messages/ # Private messaging (4 files)
│ └── errors/ # Error pages (404, 500)
├── static/ # Static assets (CSS, images)
│ ├── css/ # Fluent Design stylesheets
│ │ ├── microsoft-fluent.css
│ │ └── fluent-nordabiz.css
│ └── img/companies/ # Company logos (82 images)
├── database/ # Database schemas and migrations
│ ├── schema.sql # Main PostgreSQL schema
│ ├── README.md # Database documentation
│ └── migrations/ # Versioned migrations (6 files)
├── scripts/ # Production automation scripts
│ ├── seo_audit.py # SEO audit tool (PageSpeed Insights)
│ ├── social_media_audit.py # Social media presence audit
│ ├── seo_analyzer.py # On-page SEO analysis
│ └── company-data-collector.js # Node.js web scraper
├── tests/ # Test suite (7 files)
│ ├── ai_quality_evaluator.py # AI testing framework
│ ├── ai_quality_test_cases.json # 15 test cases in 8 categories
│ ├── test_admin_seo_dashboard.py
│ ├── test_gbp_audit_field_checks.py
│ ├── test_it_audit_collaboration.py
│ └── test_social_media_audit.py
├── data/ # Source data files
│ ├── companies-basic.json # 80 company profiles
│ └── data-sources.md # Data source documentation
├── requirements.txt # Python dependencies (13 packages)
├── docker-compose.yml # PostgreSQL development database
├── .env.example # Environment variables template
├── CLAUDE.md # Project documentation for AI
└── deployment_checklist.md # Production deployment guide
```
## Development Environment Setup
Follow these steps to set up the development environment on your local machine.
### Prerequisites
- **Python 3.9+** - Core programming language
- **PostgreSQL 15+** - Database (via Docker or native installation)
- **Git** - Version control
- **Docker** (optional) - For containerized PostgreSQL
### Installation Steps
#### 1. Clone the Repository
```bash
git clone https://github.com/pienczyn/nordabiz.git
cd nordabiz
```
#### 2. Create Virtual Environment
```bash
# Create virtual environment
python3 -m venv venv
# Activate virtual environment
# On macOS/Linux:
source venv/bin/activate
# On Windows:
venv\Scripts\activate
```
#### 3. Install Python Dependencies
```bash
pip install -r requirements.txt
```
This will install all required packages including:
- Flask 3.0.0 (web framework)
- SQLAlchemy 2.0.23 (ORM)
- psycopg2-binary 2.9.9 (PostgreSQL adapter)
- google-generativeai 0.3.2 (Gemini AI)
- Flask-Login, Flask-WTF, Flask-Limiter (security)
- And more (see `requirements.txt` for complete list)
#### 4. Set Up PostgreSQL Database
**Option A: Using Docker (Recommended for Development)**
```bash
# Start PostgreSQL container
docker compose up -d
# Verify container is running
docker ps | grep nordabiz-postgres
```
This creates a PostgreSQL 15 database on `localhost:5433` with:
- Database: `nordabiz`
- User: `nordabiz_app`
- Password: `dev_password`
**Option B: Native PostgreSQL Installation**
```bash
# Install PostgreSQL (example for Ubuntu/Debian)
sudo apt install postgresql-15 postgresql-contrib-15
# Create database and user
sudo -u postgres psql
```
```sql
CREATE DATABASE nordabiz;
CREATE USER nordabiz_app WITH PASSWORD 'your_password_here';
GRANT ALL PRIVILEGES ON DATABASE nordabiz TO nordabiz_app;
\q
```
#### 5. Initialize Database Schema
```bash
# Apply schema (Docker setup)
docker exec -i nordabiz-postgres psql -U nordabiz_app -d nordabiz < database/schema.sql
# Or for native PostgreSQL
psql -U nordabiz_app -d nordabiz -h localhost < database/schema.sql
```
#### 6. Configure Environment Variables
Create `.env` file in the project root:
```bash
cp .env.example .env
```
Edit `.env` and configure the following variables:
```bash
# Flask Configuration
SECRET_KEY=your-super-secret-key-change-this
FLASK_ENV=development
# Server Configuration
PORT=5000
HOST=0.0.0.0
# Database Configuration (for Docker setup)
DATABASE_URL=postgresql://nordabiz_app:dev_password@localhost:5433/nordabiz
# Google Gemini API (required for AI chat)
GOOGLE_GEMINI_API_KEY=your_gemini_api_key_here
# Google PageSpeed Insights API (optional, for SEO audits)
GOOGLE_PAGESPEED_API_KEY=your_pagespeed_api_key_here
# Google Places API (optional, for GBP audits)
GOOGLE_PLACES_API_KEY=your_places_api_key_here
# Email Configuration (optional, for user verification)
MAIL_SERVER=smtp.gmail.com
MAIL_PORT=587
MAIL_USE_TLS=True
MAIL_USERNAME=your_email@gmail.com
MAIL_PASSWORD=your_app_password_here
MAIL_DEFAULT_SENDER=noreply@norda-biznes.info
# Application URLs
APP_URL=http://localhost:5000
VERIFY_EMAIL_URL=http://localhost:5000/verify-email
```
**Getting API Keys:**
- **Gemini API**: https://ai.google.dev/ (free tier: 200 requests/day)
- **PageSpeed Insights**: https://developers.google.com/speed/docs/insights/v5/get-started (free tier: 25,000 requests/day)
- **Google Places**: https://console.cloud.google.com/apis/credentials (free tier: $200/month credit)
#### 7. Run the Application
```bash
# Ensure virtual environment is activated
source venv/bin/activate # or venv\Scripts\activate on Windows
# Run Flask development server
python3 app.py
```
The application will start on `http://localhost:5000`
**Default ports:**
- Flask app: `5000` (or `5001` if 5000 is occupied)
- PostgreSQL (Docker): `5433` (mapped from container's 5432)
#### 8. Verify Installation
Open your browser and navigate to:
- **Main app**: http://localhost:5000
- **Health check**: http://localhost:5000/health
- **API test**: http://localhost:5000/api/companies
### Development Workflow
```bash
# Start PostgreSQL (if using Docker)
docker compose up -d
# Activate virtual environment
source venv/bin/activate
# Run application
python3 app.py
# In another terminal: Run tests
python -m pytest tests/
# Stop PostgreSQL when done
docker compose down
```
### Troubleshooting
**Database Connection Issues:**
```bash
# Check PostgreSQL is running (Docker)
docker ps | grep nordabiz-postgres
# Check PostgreSQL logs
docker logs nordabiz-postgres
# Restart PostgreSQL container
docker compose restart
```
**Port Already in Use:**
```bash
# Change PORT in .env file
PORT=5001
# Or stop conflicting service
lsof -ti:5000 | xargs kill -9
```
**Missing Dependencies:**
```bash
# Reinstall all dependencies
pip install -r requirements.txt --force-reinstall
```
**Database Schema Issues:**
```bash
# Reset database (Docker)
docker compose down -v # WARNING: Deletes all data!
docker compose up -d
docker exec -i nordabiz-postgres psql -U nordabiz_app -d nordabiz < database/schema.sql
```
For more detailed database setup and management, see `database/README.md`.
## Planowane rozszerzenia
### Faza 2 - Profile firm
- [ ] Szczegółowe profile każdej firmy
- [ ] Dane kontaktowe (email, telefon, adres)
- [ ] Linki do stron WWW i social media
- [ ] Galeria zdjęć
- [ ] Oferta produktów/usług
### Faza 3 - Networking
- [ ] System wiadomości między firmami
- [ ] Tablica ogłoszeń
- [ ] Oferty współpracy
- [ ] Wydarzenia i spotkania networkingowe
### Faza 4 - Deals & Współpraca
- [ ] Marketplace dla ofert B2B
- [ ] System matchingu partnerów biznesowych
- [ ] Wspólne projekty i konsorcja
- [ ] Referencje i rekomendacje
### Faza 5 - Zaawansowane funkcje
- [ ] Panel administracyjny
- [ ] Logowanie dla członków
- [ ] Newsletter
- [ ] Blog / Aktualności
- [ ] Statystyki i analytics
- [ ] Integracja z CRM
## Technology Stack
### Backend
- **Python** 3.9+ - Core programming language
- **Flask** 3.0.0 - Web application framework
- **SQLAlchemy** 2.0.23 - ORM and database abstraction layer
- **PostgreSQL** - Primary relational database (production and development)
- **Gunicorn** - WSGI HTTP server for production deployment
### Security & Authentication
- **Flask-Login** 0.6.3 - User session management and authentication
- **Flask-WTF** 1.2.1 - CSRF protection and form validation
- **Flask-Limiter** 3.5.0 - Rate limiting (200 req/day, 50 req/hour)
### AI & Machine Learning
- **Google Gemini AI** (google-generativeai 0.3.2)
- Models: gemini-2.5-flash (default), gemini-2.5-flash-lite, gemini-2.5-pro
- Features: Multi-turn conversations, context-aware recommendations, AI-powered search
- Limits: Free tier (200 requests/day)
### External API Integrations
1. **Google Gemini AI** - Conversational AI and company recommendations
2. **Google PageSpeed Insights** - SEO and performance analysis (25,000 req/day)
3. **Google Maps/Places** - Business verification and geocoding
4. **Microsoft Graph API** - Email service (OAuth2 with MSAL)
5. **KRS Open API** - Polish business registry data
6. **Brave Search API** - News monitoring and company mentions (2,000 req/month)
### Frontend
- **Jinja2** - Server-side HTML template rendering (30+ templates)
- **CSS3** - Custom styling with Fluent Design System inspiration
- **Vanilla JavaScript** (ES6+) - Dynamic UI interactions, AJAX, form validation
- **No external frameworks** - Custom UI components (modals, toasts, cards, tables)
### SEO & Web Analysis
- **BeautifulSoup4** 4.12.3 - HTML parsing and meta tag extraction
- **lxml** 5.1.0 - Fast XML/HTML processing with XPath support
- **python-whois** 0.9.4 - Domain information and WHOIS lookup
### Infrastructure & Deployment
- **Nginx Proxy Manager** - Reverse proxy on R11-REVPROXY-01 (10.22.68.250)
- **Let's Encrypt** - SSL/TLS certificates with auto-renewal
- **Docker** - PostgreSQL container for local development
- **systemd** - Service management (nordabiznes.service)
- **Git** - Version control (GitHub + Gitea internal)
### Database
- **PostgreSQL** - Primary database with advanced features:
- Full-text search (FTS) with tsvector
- Fuzzy matching with pg_trgm extension
- JSONB for flexible data storage
- 20+ tables (Company, User, Chat, News, Social Media, SEO, etc.)
- psycopg2-binary 2.9.9 adapter
### Utilities
- **Flask-Mail** 0.9.1 - Email functionality
- **requests** 2.31.0 - HTTP client for external API calls
- **feedparser** 6.0.10 - RSS/Atom feed parsing
- **python-dotenv** 1.0.0 - Environment variable management
## Dane kontaktowe Norda Biznes
- **Adres**: ul. 12 Marca 238/5, 84-200 Wejherowo
- **Email**: biuro@norda-biznes.info
- **Telefon**: +48 729 716 400
- **Web**: https://norda-biznes.info
## Rozwój
Projekt jest gotowy do rozbudowy. Kolejne fazy mogą obejmować:
1. Backend (Node.js, Python, PHP)
2. Baza danych (PostgreSQL, MongoDB)
3. Autoryzacja i uwierzytelnianie
4. API dla integracji z innymi systemami
5. Aplikacja mobilna
## Licencja
Projekt stworzony dla Norda Biznes - Regionalna Izba Przedsiębiorców