-
Notifications
You must be signed in to change notification settings - Fork 0
Fix typo in project title: "Engagemnet" → "Engagement" #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| # MegaEngage - Employee Engagement Platform | ||
|
|
||
| ## Overview | ||
|
|
||
| MegaEngage is a modern employee engagement platform designed to help organizations measure, track, and improve employee satisfaction and engagement levels. | ||
|
|
||
| ## Features | ||
|
|
||
| - **Dashboard**: Real-time analytics and insights | ||
| - **Surveys**: Create and manage employee engagement surveys | ||
| - **Feedback**: Continuous feedback collection and management | ||
| - **Recognition**: Peer-to-peer recognition and rewards | ||
| - **Reports**: Comprehensive reporting and data visualization | ||
|
|
||
| ## Tech Stack | ||
|
|
||
| - Frontend: React, TypeScript, Tailwind CSS | ||
| - Backend: Node.js, Express | ||
| - Database: PostgreSQL | ||
| - Authentication: JWT | ||
|
|
||
| ## Getting Started | ||
|
|
||
| ### Prerequisites | ||
|
|
||
| - Node.js (v16 or higher) | ||
| - npm or yarn | ||
| - PostgreSQL | ||
|
|
||
| ### Installation | ||
|
|
||
| 1. Clone the repository: | ||
| ```bash | ||
| git clone https://github.com/PetrAnto/megaengage.git | ||
| cd megaengage | ||
| ``` | ||
|
|
||
| 2. Install dependencies: | ||
| ```bash | ||
| npm install | ||
| ``` | ||
|
|
||
| 3. Set up environment variables: | ||
| ```bash | ||
| cp .env.example .env | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The setup guide now includes Useful? React with 👍 / 👎. |
||
| ``` | ||
| Edit `.env` with your configuration. | ||
|
|
||
| 4. Start the development server: | ||
| ```bash | ||
| npm run dev | ||
| ``` | ||
|
|
||
| ## Contributing | ||
|
|
||
| Contributions are welcome! Please feel free to submit a Pull Request. | ||
|
|
||
| ## License | ||
|
|
||
| This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. | ||
|
|
||
| ## Contact | ||
|
|
||
| For questions or feedback, please open an issue in this repository. | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The onboarding steps tell users to run
npm installandnpm run dev, but this commit adds those commands without adding apackage.json, so a fresh clone fails immediately with ENOENT instead of starting the project. This makes the primary setup path in the new README unusable unless the missing Node project files are added or the commands are replaced with the real run instructions.Useful? React with 👍 / 👎.