├── .github └── ISSUE_TEMPLATE │ ├── app-request.md │ ├── feature_request.md │ └── bug_report.md ├── .gitignore └── README.md /.github/ISSUE_TEMPLATE/app-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: App request 3 | about: Suggest an app for the store 4 | title: '' 5 | labels: app request 6 | assignees: MaxvandeLaar 7 | 8 | --- 9 | 10 | - Repo: [e.g. https://github.com/the/repo/here] 11 | - Stable branch: [e.g. master/release/production] 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: MaxvandeLaar 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: MaxvandeLaar 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. MacOS/Windows + version] 28 | - App Store version: [e.g. v0.1.5] 29 | 30 | **Additional context** 31 | Add any other context about the problem here. 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | .DS_Store 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # TypeScript cache 43 | *.tsbuildinfo 44 | 45 | # Optional npm cache directory 46 | .npm 47 | 48 | # Optional eslint cache 49 | .eslintcache 50 | 51 | # Optional REPL history 52 | .node_repl_history 53 | 54 | # Output of 'npm pack' 55 | *.tgz 56 | 57 | # Yarn Integrity file 58 | .yarn-integrity 59 | 60 | # dotenv environment variables file 61 | .env 62 | .env.test 63 | 64 | # parcel-bundler cache (https://parceljs.org/) 65 | .cache 66 | 67 | # next.js build output 68 | .next 69 | 70 | # nuxt.js build output 71 | .nuxt 72 | 73 | # vuepress build output 74 | .vuepress/dist 75 | 76 | # Serverless directories 77 | .serverless/ 78 | 79 | # FuseBox cache 80 | .fusebox/ 81 | 82 | # DynamoDB Local files 83 | .dynamodb/ 84 | 85 | # Webpack 86 | .webpack/ 87 | 88 | # Electron-Forge 89 | out/ 90 | 91 | tmp 92 | 93 | *.iml 94 | 95 | .idea 96 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Homey Community Store 2 | 3 | The Homey Community store is the alternative store for installing app on your Homey. You can find the store here: [https://store.homey.community](https://store.homey.community) 4 | 5 | If you enjoy the app and can spare a few coins... hosting the store sadly isn't free and it would help me to keep it ads free. 6 | 7 | Buy Me a Coffee at ko-fi.com 8 | Buy Me a Coffee at ko-fi.com 9 | 10 | 11 | ## Important 12 | This repo does not include any active code anymore and is purely meant for bug reports and feature requests. 13 | 14 | ## How to get your app listed 15 | Message me on Slack [@MaxvandeLaar](https://homeyusers.slack.com/archives/DUV9LK6RF). 16 | 17 | The app needs to conform to the same standards as official apps. As long as it runs and has the required files, it will be accepted. No matter if it's a duplicate or too complex app 😊 18 | 19 | ## Developers wanted! 20 | 21 | * Would you like to contribute to this project besides donating? 22 | 23 | If you answer yes, please message me on Slack [@MaxvandeLaar](https://homeyusers.slack.com/archives/DUV9LK6RF). 24 | 25 | * You don't know how to program? 26 | 27 | Do you know how to ask for help and how to use Google? Most devs are just really good at using Google and I have learned that most Homey apps aren't written by professional developers. I am more than happy to assist you while you help improve the HCS! 28 | --------------------------------------------------------------------------------