This repository contains a minimal Flask application for showcasing upcoming wellness events. The app renders a landing page populated by event data that can later be swapped out with a real data source.
-
Create a virtual environment and install dependencies:
python -m venv .venv source .venv/bin/activate pip install flask
-
Start the development server:
flask --app app run --debug
-
Visit http://127.0.0.1:5000/ to view the event listings.
The /blog
, /events
, and /book
routes return placeholder content so navigation items can be wired up before their real implementations are ready.