c086f64363
- Add 7 core API endpoints: users, transactions, partners, products, inventory, payments, credit - Implement role-based authentication (admin/write/read-only access) - Add comprehensive database models with proper relationships - Include full test coverage for all endpoints and business logic - Set up Alembic migrations and Docker configuration - Configure FastAPI app with CORS and database integration
33 lines
623 B
JSON
33 lines
623 B
JSON
{
|
|
"github.copilot.advanced": {
|
|
"ignore": [
|
|
"**/.env",
|
|
"**/.env.*",
|
|
"**/.env.local",
|
|
"**/.env.production",
|
|
"**/.env.development",
|
|
"**/secrets/**",
|
|
"**/*.key",
|
|
"**/*.pem",
|
|
"**/.env.example",
|
|
"**/config/*.env"
|
|
]
|
|
},
|
|
"github.copilot.enable": {
|
|
"plaintext": false,
|
|
"properties": false
|
|
},
|
|
"sqltools.connections": [
|
|
{
|
|
"previewLimit": 50,
|
|
"server": "localhost",
|
|
"port": 5432,
|
|
"askForPassword": true,
|
|
"driver": "PostgreSQL",
|
|
"database": "cmt_db",
|
|
"username": "admin",
|
|
"name": "CMT"
|
|
}
|
|
]
|
|
}
|