Thanks to visit codestin.com
Credit goes to github.com

Skip to content

lodist/funges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Fung.es

A modern foraging webapp built with React 19, TanStack Router, and Vite that helps users discover wild mushrooms, edible plants, and berries in their area. Features an interactive Mapbox map with real-time foraging data, comprehensive species database, and curated wild food recipes.

🌟 Features

πŸ—ΊοΈ Interactive Foraging Map

  • Real-time Mapbox integration with custom GeoJSON overlays
  • Dynamic species filtering by category (mushrooms, plants, berries, nuts, flowers)
  • Geolocation support with user location detection and navigation
  • Responsive design optimized for both desktop and mobile devices
  • Dark/light theme support with system preference detection

πŸ„ Species Database

  • Comprehensive catalog of 30+ wild edibles including:
    • Mushrooms (Chanterelles, Morels, Porcini, etc.)
    • Edible plants (Nettles, Dandelions, Wild Garlic, etc.)
    • Berries (Blackberries, Elderberries, Wild Strawberries, etc.)
    • Nuts (Hazelnuts, Walnuts, Chestnuts)
  • Scientific names and detailed descriptions
  • Seasonal information and habitat details
  • Safety notes and identification tips
  • Multi-language support (English, German, Spanish, French, Italian, Portuguese)

🍽️ Wild Food Recipes

  • Curated recipe collection featuring wild ingredients
  • Difficulty levels (Easy, Medium, Hard) with prep/cook times
  • Safety warnings and preparation tips
  • Filterable by ingredient type and dietary preferences
  • Step-by-step instructions with cooking tips
  • Beautiful recipe images and nutritional information

πŸ“± Progressive Web App (PWA)

  • Full offline support with service worker caching
  • Installable on mobile and desktop devices
  • Splash screens for native app-like experience
  • Offline map functionality with cached data
  • Push notifications support (configurable)

🌍 Internationalization

  • 6 language support with automatic detection
  • Localized content for species, recipes, and UI
  • RTL language support ready
  • Cultural adaptations for regional foraging practices

πŸ—οΈ Architecture

Tech Stack

  • Frontend: React 19 with TypeScript
  • Routing: TanStack Router with file-based routing
  • State Management: Zustand stores
  • Styling: Tailwind CSS 4 + SCSS
  • Maps: Mapbox GL JS
  • Build Tool: Vite 6
  • Testing: Vitest + Testing Library
  • PWA: Vite PWA plugin

Project Structure

src/
β”œβ”€β”€ components/         # Reusable UI components
β”‚   β”œβ”€β”€ ui/             # shadcn/ui components
β”‚   β”œβ”€β”€ MapComponent/   # Map-related components
β”‚   └── Sidebar/        # Navigation components
β”œβ”€β”€ pages/              # Page components
β”œβ”€β”€ routes/             # TanStack Router file-based routes
β”œβ”€β”€ store/              # Zustand state stores
β”œβ”€β”€ data/               # Static data (species, recipes)
β”œβ”€β”€ hooks/              # Custom React hooks
β”œβ”€β”€ i18n/               # Internationalization
β”œβ”€β”€ lib/                # Utilities and API layer
└── styles/             # Global styles and design tokens

Key Components

  • AdvancedMap: Interactive Mapbox map with foraging data
  • SpeciesSelector: Filter and browse wild edibles
  • RecipeModal: Detailed recipe viewer with instructions
  • AppSidebar: Navigation and species filtering
  • MobileNavbar: Mobile-optimized navigation

πŸš€ Getting Started

Prerequisites

  • Node.js 18+
  • npm, yarn, or bun

Installation

  1. Clone the repository
git clone https://github.com/your-username/funges.git
cd funges
  1. Install dependencies
npm install
  1. Environment setup
cp .env.example .env

Configure your .env file:

VITE_MAPBOX_ACCESS_TOKEN=your_mapbox_token_here
VITE_MAPBOX_STYLE=your_mapbox_style_here
VITE_BASE_URL=/
VITE_HOSTNAME=https://www.fung.es
VITE_VISITOR_LIMIT=45000
  1. Start development server
npm run dev

The app will be available at http://localhost:3000

πŸ› οΈ Development

Available Scripts

  • npm run dev - Start Vite dev server
  • npm run dev:mobile - Start with mobile-optimized settings
  • npm run build - Build production bundle
  • npm run preview - Preview production build
  • npm run lint - Run ESLint
  • npm run lint:fix - Fix ESLint issues
  • npm run format - Run Prettier
  • npm run type-check - TypeScript type checking
  • npm run test - Run Vitest tests
  • npm run test:ui - Interactive test UI
  • npm run test:coverage - Test coverage report
  • npm run storybook - Start Storybook

Code Quality

  • ESLint with TypeScript and React rules
  • Prettier for code formatting
  • TypeScript strict mode enabled

πŸ“± PWA Features

Installation

  • Add to home screen on mobile devices
  • Desktop app installation on supported browsers
  • Automatic updates with background sync
  • Native app-like user experience

🌍 Internationalization

Supported Languages

  • English (en) - Default
  • German (de) - Deutsch
  • Spanish (es) - EspaΓ±ol
  • French (fr) - FranΓ§ais
  • Italian (it) - Italiano
  • Portuguese (pt) - PortuguΓͺs

Localization Features

  • Automatic language detection based on browser settings
  • Persistent language preference stored locally

πŸ”§ Configuration

Environment Variables

Variable Description Default
VITE_MAPBOX_ACCESS_TOKEN Mapbox API access token Required
VITE_MAPBOX_STYLE Mapbox style URL mapbox://styles/mapbox/outdoors-v12
VITE_BASE_URL Base URL for the app /
VITE_HOSTNAME Hostname for sitemap https://www.fung.es
VITE_VISITOR_LIMIT Mapbox usage limit 45000

πŸš€ Deployment

Build

npm run build

PWA Deployment

  • HTTPS required for service worker functionality
  • Manifest generation automatic
  • Icon generation for all device sizes
  • Splash screen creation for native feel

🀝 Contributing

Development Workflow

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Ensure all tests pass
  6. Submit a pull request

Code Standards

  • TypeScript for type safety
  • ESLint for code quality
  • Prettier for formatting
  • Conventional commits for commit messages

πŸ“„ License

MIT License - see LICENSE file for details.

⚠️ Safety Notice

Always consult with local experts before consuming wild edibles. This app provides educational information but should not be the sole source for identification. Many wild mushrooms and plants have poisonous look-alikes. When in doubt, leave it out.


Happy foraging! πŸ„πŸŒΏπŸ«

About

open repository of the website https://fung.es

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •