Development environment setup#96
Draft
michaelwschultz wants to merge 2 commits intoms/move-to-tailwindfrom
Draft
Development environment setup#96michaelwschultz wants to merge 2 commits intoms/move-to-tailwindfrom
michaelwschultz wants to merge 2 commits intoms/move-to-tailwindfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Summary
Sets up the Hemolog development environment and documents the configuration so Cursor and other developers can restore it in future sessions.
Changes
Added
.env.example– Documents required environment variables for local development with Firebase emulators:NEXT_PUBLIC_USE_EMULATORS=true– Enables local Firebase emulatorsNEXT_PUBLIC_FIREBASE_PROJECT_ID=hemolog– Project ID (optional, has fallback)Updated
.cursorrules– Added "Development Environment Setup" section with step-by-step instructions:pnpm install.env.localfrom.env.example(ensureNEXT_PUBLIC_USE_EMULATORS=true)pnpm run firebasepnpm run devThis allows Cursor agents to restore and run the dev environment in future sessions without re-discovering the setup.
Created
.env.local(local only, gitignored) – Configured for emulator mode during setup verificationSetup Verification
The development environment has been verified to work:
pnpm installcompleted successfully (1022 packages)pnpm run firebasestarts Auth (9099), Firestore (8082), and Emulator UI (8081)pnpm run devstarts the app at http://localhost:3000