{"id":15691551,"url":"https://github.com/shekohex/dead-simple-feedback-app","last_synced_at":"2025-05-08T00:54:56.455Z","repository":{"id":25698485,"uuid":"106308999","full_name":"shekohex/dead-simple-feedback-app","owner":"shekohex","description":"just a dead simple feedback application","archived":false,"fork":false,"pushed_at":"2022-12-07T08:22:16.000Z","size":891,"stargazers_count":8,"open_issues_count":17,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-08T00:54:49.490Z","etag":null,"topics":["bulma","expressjs","feedback","javascript","nodejs"],"latest_commit_sha":null,"homepage":"https://dead-simple-feedback.herokuapp.com/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shekohex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-09T16:40:54.000Z","updated_at":"2020-11-29T13:09:32.000Z","dependencies_parsed_at":"2022-07-27T05:16:28.441Z","dependency_job_id":null,"html_url":"https://github.com/shekohex/dead-simple-feedback-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shekohex%2Fdead-simple-feedback-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shekohex%2Fdead-simple-feedback-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shekohex%2Fdead-simple-feedback-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shekohex%2Fdead-simple-feedback-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shekohex","download_url":"https://codeload.github.com/shekohex/dead-simple-feedback-app/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252978738,"owners_count":21834915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bulma","expressjs","feedback","javascript","nodejs"],"created_at":"2024-10-03T18:22:15.656Z","updated_at":"2025-05-08T00:54:56.417Z","avatar_url":"https://github.com/shekohex.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![Greenkeeper badge](https://badges.greenkeeper.io/shekohex/dead-simple-feedback-app.svg)](https://greenkeeper.io/)\n[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/)\n[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.png?v=103)](https://opensource.org/licenses/mit-license.php)\n[![Heroku](http://heroku-badge.herokuapp.com/?app=dead-simple-feedback\u0026style=flat)](https://dead-simple-feedback.herokuapp.com/)\n[![Build Status](https://semaphoreci.com/api/v1/shekohex/dead-simple-feedback-app/branches/master/badge.svg)](https://semaphoreci.com/shekohex/dead-simple-feedback-app)\n\n# A Dead Simple Feedback App\n[![demo](https://www.prchecker.info/free-icons/128x128/demo_128_px.png)](https://dead-simple-feedback.herokuapp.com/)\n\njust a simple node-expressjs application with MongoDB as Database Engine for storing feedbacks\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.\n\n### Prerequisites\n\nNode JS and GIT installed \n\n### Installing\n\n1 - frist of all you need to clone this repo\n\n```\ngit clone https://github.com/shekohex/dead-simple-feedback-app.git\ncd /dead-simple-feedback-app\nnpm install\n```\n\n2 - then you need to copy and rename .env-example file to .env and open it\nedit your database server and save the file\n\n3 - after editing the .env file , open app.js and go to line 44\n\n```javascript\n//deactivate this route after finish your setup\napp.get('/setup', (req, res) =\u003e {\n   let settings = new database.websiteSettings({\n       settings: {\n           title: 'Give Me a Feedback', //website title\n           adminName: 'shekohex', // we will use this to login to dashboard\n           passPhrase: 'password' // i think you know what is that :'D\n       },\n       userData: {\n           username: 'shadygkhalifa', //this just a username , you can use your twitter username\n           name: 'Shady Khalifa', // hmmmm ?\n           profilePic: 'https://pbs.twimg.com/profile_images/915263274110906369/Z_kfjrLb_400x400.jpg', // 400x400 \n           headerPic: 'https://pbs.twimg.com/profile_banners/2943447525/1482352613/1500x500',\n           facebook: 'https://facebook.com/hex.inc',\n           twitter: 'https://twitter.com/shadygkhalifa',\n           github: 'https://github.com/shekohex'\n       },\n       senderData: {\n           name: 'Someone', // this will apper when someone send a message\n           username: 'someone',\n           profilePic: 'images/unknown.jpg'\n       }\n   })\n    settings.save()\n    res.send(settings)\n})\n\n```\n4- at the end open your terminal or cmd and type\n```\nnpm start\n```\nthen open your browser and go to \n```\nlocalhost:3000/setup\n```\nyou should get the resualt back as the settings you added above\n\n5 - To login to Dashboard go to\n```\nlocalhost:3000/manager/login\n```\nand use your username and password that used while setting up\n\n## Why Pure Javascript?\n\ni made this app as an example for any one who wana start NodeJS to get a good view about it,\nkeeing things simple and readable is good for newbie\n\n## Built With\n\n* [ExpressJS](https://expressjs.com) - Fast, unopinionated, minimalist web framework for Node.js\n* [Mongoose](http://mongoosejs.com/) - elegant mongodb object modeling for node.js\n* [Bulma](http://bulma.io/) - A modern CSS framework based on Flexbox\n\n## Contributing\n\nyou are welcome with this project for contributing, just contact me \n\n## Authors\n\n* **Shady Khalifa** - *Initial work*\n\nSee also the list of [contributors](https://github.com/your/project/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshekohex%2Fdead-simple-feedback-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshekohex%2Fdead-simple-feedback-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshekohex%2Fdead-simple-feedback-app/lists"}