Platform foundation: add Qlivik core WP plugin, DB schemas, admin API panel, health endpoints, and full‑stack starters - #1
Draft
ahmeddk wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
QLIVIK_PLATFORM_PROMPT.mdcontaining the platform identity, principles, product surface, and technical requirements as the master reference.qlivik-corewith bootstrapqlivik-core.php, activation routineQLVK_DB::activatethat creates allqlvk_tables viadbDelta(), andQLVK_PLUGIN_VERSIONconstants.QLVK_APIwhich registers a public REST routeGET /wp-json/qlivik/v1/healthreturning plugin version, table readiness, and status.QLVK_Adminthat registers an admin menu and renders the DB-backed API Management Panel to save provider keys (openai,gemini,stripe,google_maps,google_calendar,calendly,twilio,brevo).QLVK_Pluginsingleton to wire REST routes and admin menu, plusclass-qlvk-*implementations.qlivik-coredocs:README.md,TESTING.md, andPHASE-COMPLETE.mddocumenting install, health checks, and next steps.qlivik-platformwith a Node/Express API (/api/health,/api/city-unlock,/api/recommendations/:businessId), adatabase/schema.sqlbaseline, and three Vite + React apps forbusiness-dashboard,customer-platform, andsuper-adminwith proxy configs for local development.package.jsonwith dev scripts to run services and apps together and docs/roadmap for phased build-out.Testing
qlivik-core/TESTING.mdand describes activation, schema verification, andcurlchecks againstGET /wp-json/qlivik/v1/health.qlivik-platform/services/api/src/server.jsfor local smoke testing vianpm --workspace @qlivik/api run dev, and the frontends are configured to proxy tohttp://localhost:4100for interactive verification.qlivik-core/TESTING.mdandqlivik-platform/README.mdbefore proceeding to further integration or CI tests.Codex Task