dampi
an AI-powered pediatric health assistant that streamlines care by transforming multilingual symptom logs into 30-second clinical summaries for doctors, while securely organizing medical records and HMO details to lower out-of-pocket costs for families.
파일 탐색기
- MEMORY.md
- project_dampi_context.md
- funny-lichterman-5023b1
- DAMPI_BRAINSTORM.md
- launch.json
- deploy.yml
- Project_Default.xml
- .gitignore
- dampi.iml
- discord.xml
- material_theme_project_new.xml
- modules.xml
- vcs.xml
- chatApi.js
- ChatFab.jsx
- ChatModal.jsx
- prompts.js
- supabaseAdmin.js
- package-lock.json
- package.json
- server.js
- chat-ui.css
- .DS_Store
- Borel-Regular.ttf
- dampi.svg
- scaledown.png
- scaleup.png
- DampiChatModal.jsx
- DampiFab.jsx
- quickSymptomLog.js
- QuickSymptomLogPanel.jsx
- child-selector.css
- ChildSelector.jsx
- question-card.css
- QuestionCard.jsx
- bottom-nav.css
- BottomNav.jsx
- DashboardMetricsCarousel.css
- DashboardMetricsCarousel.jsx
- HealthOverviewCarousel.css
- HealthOverviewCarousel.jsx
- contextAwareAssessmentPrompts.js
- dampiAi.js
- symptomLogAi.js
- symptomPrompt.js
- supabase.js
- app-navigator.css
- AppNavigator.jsx
- top-nav-bar.css
- TopNavBar.jsx
- DashboardDemo.jsx
- accept-invite.css
- AcceptInviteScreen.jsx
- auth.css
- AuthLandingScreen.jsx
- LoginScreen.jsx
- SocialAuthButtons.jsx
- child-registration.css
- ChildRegistrationFlow.jsx
- family.css
- FamilyScreen.jsx
- financial-assistance.css
- FinancialAssistanceScreen.jsx
- hmo-portal.css
- HMOPortalScreen.jsx
- home-screen.css
- HomeScreen.jsx
- index.js
- AddChildScreen.jsx
- CreateAccountScreen.jsx
- HMOCoverageScreen.jsx
- InviteFamilyScreen.jsx
- onboarding.css
- OnboardingFlow.jsx
- TryDampiScreen.jsx
- WelcomeScreen.jsx
- symptom-guide.css
- SymptomGuideScreen.jsx
- CameraGuideModal.jsx
- FlowHelpModal.jsx
- PhotoAttachField.jsx
- StepHelpPanel.jsx
- VoiceNoteButton.jsx
- Step1Describe.jsx
- Step2Examine.jsx
- Step3Findings.jsx
- Step4Summary.jsx
- draftStorage.js
- prompts.js
- symptom-log.css
- symptom-summary.css
- SymptomLogFlow.jsx
- SymptomLogScreen.jsx
- SymptomSummaryView.jsx
- assessmentAdapter.js
- assessmentContext.js
- chatPersistence.js
- dampiApi.js
- geminiApi.js
- symptomLogPersistence.js
- dampi-chat.css
- dampi-fab.css
- index.css
- appConfig.js
- dobValidation.js
- .DS_Store
- App.jsx
- main.jsx
- index.ts
- index.ts
- .gitkeep
- 20260505000100_onboarding_profiles.sql
- 20260506000100_ai_chat_conversations.sql
- 20260507000100_caregiver_invite_access.sql
- 20260507000200_profile_photos.sql
- 20260507000300_fix_profile_photo_storage_policies.sql
- 20260508000100_symptom_logs.sql
- 20260508000200_hmo_coverage.sql
- 20260508000300_care_circle_discovery.sql
- 20260508000400_fix_invite_policy_auth_users_permission.sql
- 20260508000500_get_own_caregiver_invites_rpc.sql
- 20260508000600_profile_email_search_without_auth_users.sql
- 20260509000100_extended_child_registration.sql
- .gitignore
- config.toml
- seed.sql
- .env.example
- .gitignore
- ASSESSMENT_IMPLEMENTATION.md
- DESIGN.md
- index.html
- Justfile
- package-lock.json
- package.json
- README.md
- vite.config.js
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
설명 보기 ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
설명 보기 ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
