├── vue.config.js
├── .all-contributorsrc
├── .github
└── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
├── .gitignore
├── LICENSE
├── README.md
├── babel.config.js
├── package-lock.json
├── package.json
├── public
├── favicon.png
└── index.html
└── src
├── App.vue
├── assets
├── logo.png
└── logo.svg
├── firebase.js
├── main.js
├── plugins
└── vuetify.js
├── router.js
├── store.js
└── views
├── Account.vue
├── Auth.vue
├── Dashboard.vue
├── DeleteIdea.vue
├── EditIdea.vue
├── Idea.vue
├── Loading.vue
├── MyIdeas.vue
├── Navbar.vue
└── PublicIdeas.vue
/ vue.config.js:
--------------------------------------------------------------------------------
1 | // vue.config.js
2 |
3 | module.exports = {
4 | css: {
5 | loaderOptions: {
6 | sass: {
7 | data: `@import "~@/sass/main.scss"`
8 | }
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/.all-contributorsrc:
--------------------------------------------------------------------------------
1 | {
2 | "files": [
3 | "README.md"
4 | ],
5 | "imageSize": 100,
6 | "commit": false,
7 | "contributors": [
8 | {
9 | "login": "MuhaddiMu",
10 | "name": "Muhammad Muhaddis",
11 | "avatar_url": "https://avatars3.githubusercontent.com/u/26611847?v=4",
12 | "profile": "http://Http://www.Muhaddis.Info",
13 | "contributions": [
14 | "infra",
15 | "code",
16 | "business"
17 | ]
18 | },
19 | {
20 | "login": "DiegoPette",
21 | "name": "DiegoPette",
22 | "avatar_url": "https://avatars3.githubusercontent.com/u/31654084?v=4",
23 | "profile": "https://github.com/DiegoPette",
24 | "contributions": [
25 | "code"
26 | ]
27 | },
28 | {
29 | "login": "humarh-dharnarh",
30 | "name": "Umar Farouq Mohammed",
31 | "avatar_url": "https://avatars3.githubusercontent.com/u/24873093?v=4",
32 | "profile": "https://umarfarouq.website",
33 | "contributions": [
34 | "design"
35 | ]
36 | },
37 | {
38 | "login": "markrmessmore",
39 | "name": "Mark",
40 | "avatar_url": "https://avatars1.githubusercontent.com/u/25889617?v=4",
41 | "profile": "https://MarkMessmore.us",
42 | "contributions": [
43 | "code",
44 | "design"
45 | ]
46 | },
47 | {
48 | "login": "Kasulejoseph",
49 | "name": "kasulejoseph",
50 | "avatar_url": "https://avatars2.githubusercontent.com/u/32167860?v=4",
51 | "profile": "https://github.com/Kasulejoseph",
52 | "contributions": [
53 | "code"
54 | ]
55 | }
56 | ],
57 | "contributorsPerLine": 7,
58 | "projectName": "Idea-ReVue",
59 | "projectOwner": "MuhaddiMu",
60 | "repoType": "github",
61 | "repoHost": "https://github.com"
62 | }
63 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
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 | **Additional context**
27 | Add any other context about the problem here.
28 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
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 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 | # local env files
6 | .env.local
7 | .env.*.local
8 |
9 | # Log files
10 | npm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 |
14 | # Editor directories and files
15 | .idea
16 | .vscode
17 | *.suo
18 | *.ntvs*
19 | *.njsproj
20 | *.sln
21 | *.sw?
22 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Muhammad Muhaddis
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Idea Re-Vue 💡
2 |
Social ideation platform that helps you brainstorm Ideas. Create, edit, collaborate & share ideas in a fun, visual way 🥳
3 |
4 | TRY IT FREE 🤩
5 |
6 |
7 | ## Inspiration 😍
8 | > When you write down 10 ideas a day as James Altucher recommends, you will have thousands of ways you can make money and improve your life by the end of the year. Even if 90% of your ideas are total crap, you’ll still have 365 high quality and actionable ideas that can change your life.
9 |
10 | ## Technology Stack 👓
11 | **Backend**
12 | - Firebase
13 |
14 | **Frontend**
15 | - Vue.Js
16 | - Vuetify (Material Design Vue Framework)
17 |
18 | ## Setup on Local Environment 💻
19 | - Clone the repository `git clone https://github.com/MuhaddiMu/Idea-ReVue.git`
20 | - Install node modules `npm install` or `yarn install`
21 | - Serve `npm run serve` or `yarn serve`
22 |
23 | ## I want to Contribute 🙏
24 | (Glad to see Pull Request Flooded 🤓)
25 | Pull requests and potential features are welcome.
26 |
27 | 1. Make all changes to your forked branch.
28 | 2. Update this README if necessary.
29 | 3. Submit a Pull Request and make sure to reference the issue.
30 |
31 | ## Todos 📋
32 | - [x] Authentication
33 | - [x] Display My Ideas
34 | - [x] Display Public Ideas
35 | - [x] Love Count
36 | - [x] Update Account
37 | - [x] Edit, Delete Personal Ideas
38 | - [x] Idea Search
39 | - [x] Mark Favourite Idea
40 | - [x] Idea Favourite Count
41 | - [ ] Replace Content Loaders with Vuetify Content Loaders
42 | - [ ] Report Public Idea
43 | - [ ] Single Idea Sharable Link
44 | - [ ] Idea Collaboration
45 | - [ ] Reactive Page Title
46 | - [ ] Idea Love Count
47 | - [ ] Idea board comments
48 | - [ ] Idea Board Prioritization
49 | - [ ] Customize Dashboard
50 | - [ ] Server Side Rendering with Nuxt.Js
51 | - [ ] Mailing
52 | - [ ] Notifications
53 | - [ ] PWA Support
54 |
55 | Feel free to come up with your intuition and update Todo list or let me welcome your PR 🎉
56 |
57 | ## Submit Issues 🐛
58 | Facing any Issues or weird behavior(yes, apps behave)? Feel free to open a [new issue](https://github.com/MuhaddiMu/Idea-ReVue/issues/new) and I will ideate on it where I went wrong.
59 |
60 | ## Contributors ✨
61 |
62 |
63 |
16 |
17 | I write down so many ideas that it hurts my head to come up
18 | with one more. Then I try to write down five more.
19 |
20 | – James Altucher
21 |
16 |
17 | I write down so many ideas that it hurts my head to come up
18 | with one more. Then I try to write down five more.
19 |
20 | – James Altucher
21 |