Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Environment Configuration
NODE_ENV=development
PORT=3000

# Backend Store Selection
# Options: simulator, mongodb, mysql, postgres, mssql
STORE_BACKEND=simulator

# Database Configuration (when not using simulator)
DB_HOST=localhost
DB_PORT=5432
DB_NAME=fhirtogether
DB_USER=fhir
DB_PASSWORD=fhir

# Authentication (optional)
ENABLE_AUTH=false
JWT_SECRET=your-secret-key-here

# Test Mode Settings
ENABLE_TEST_MODE=true
15 changes: 15 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'@typescript-eslint/recommended',
],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
rules: {
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
},
};
Loading