# Development Guide ## πŸš€ Quick Start for Developers ### Prerequisites - Node.js 14+ - PostgreSQL 12+ - VS Code (recommended) with extensions: - ES7+ React/Redux/React-Native snippets - Tailwind CSS IntelliSense - PostgreSQL Explorer ### Initial Setup ```bash # 1. Clone repository git clone cd pg-admin # 2. Install dependencies npm install # 3. Create .env from example cp .env.example .env # 4. Configure your database # Edit .env with your PostgreSQL credentials # 5. Start development server npm run dev ``` Open http://localhost:3000 ## πŸ“ Coding Standards ### JavaScript/Frontend ```javascript // Use const by default, let for loops const config = { ... }; let accumulator = 0; // Arrow functions for callbacks const handleClick = (e) => { ... }; // Use template literals const message = `Hello ${name}`; // Async/await instead of .then() const data = await api.fetchUsers(); // Error handling try { await api.call(); } catch (error) { console.error('Error:', error); showError(error.message); } ``` ### CSS ```css /* Use Tailwind classes */