From 07b0931797a8182e91c2a20e7242cbca19b6d469 Mon Sep 17 00:00:00 2001 From: coder_023 Date: Mon, 14 Jun 2021 22:26:50 +0530 Subject: [PATCH 01/11] Made Update functionality workable, brought in some animation --- public/index.html | 2 ++ src/Components/PostSection.js | 12 +++++++++--- src/Components/Posts.js | 20 +++++++++++++++----- src/Context/reducer.js | 3 ++- 4 files changed, 28 insertions(+), 9 deletions(-) diff --git a/public/index.html b/public/index.html index aa069f2..7dc96df 100644 --- a/public/index.html +++ b/public/index.html @@ -9,6 +9,8 @@ name="description" content="Web site created using create-react-app" /> + + + + + React App diff --git a/src/App.js b/src/App.js index 8972dd4..1f94440 100644 --- a/src/App.js +++ b/src/App.js @@ -43,6 +43,7 @@ const initialState={ postToUpdateKey:null, isLoading:false, user:{},//because its storing uuid and email + isUpdate:false, }; function App() { const [state,dispatch] = useReducer(reducer,initialState); diff --git a/src/Components/LandingPage.js b/src/Components/LandingPage.js index 99d8f08..a905d87 100644 --- a/src/Components/LandingPage.js +++ b/src/Components/LandingPage.js @@ -8,11 +8,25 @@ const LandingPage = () =>{ return(

Welcome to my website!

+ + What is website about? +
- Feelingz is a website which will help people to express their feelings anonymously. +

Feelingz is a website which will help people to express their feelings anonymously. +

Your identity is kept completely anonymous here! You just need to login and pour out all feelings which are troubling you! +

+ बन्धुरात्मात्मनस्तस्य येनात्मैवात्मना जित: |
+अनात्मनस्तु शत्रुत्वे वर्ते तात्मैव शत्रुवत् || 6|| +

+ Translation: For those who have conquered the mind, it is their friend. For those who have failed to do so, + the mind works like an enemy. +

+


+


+
) } diff --git a/src/Components/NavigationBar.js b/src/Components/NavigationBar.js index 9993f8d..4ecea1e 100644 --- a/src/Components/NavigationBar.js +++ b/src/Components/NavigationBar.js @@ -5,7 +5,7 @@ import "../css/NavigationBar.css"; import Button from "./Button"; import { toast } from "react-toastify"; import PostContext from "../Context/PostContext"; -import { UNSET_USER } from "../Context/actions.types"; +import { POST_TO_UPDATE, UNSET_USER, UPDATE_POST } from "../Context/actions.types"; const NavigationBar = () =>{ @@ -24,8 +24,17 @@ const NavigationBar = () =>{ }); - + dispatch({ + type:UPDATE_POST, + update:false, + }) + dispatch({ + type:POST_TO_UPDATE, + payload:null, + key:null + }); toast("Signed out Successfully!",{type:"success"}); + console.log("State after Signing out",state); } return(
diff --git a/src/Components/PostSection.js b/src/Components/PostSection.js index 3f4e1db..70929d1 100644 --- a/src/Components/PostSection.js +++ b/src/Components/PostSection.js @@ -8,7 +8,7 @@ import firebase from "firebase/app" //context stuff import PostContext from "../Context/PostContext"; -import {POST_TO_UPDATE} from "../Context/actions.types" +import {POST_TO_UPDATE, UPDATE_POST} from "../Context/actions.types" import { toast } from "react-toastify"; @@ -16,11 +16,11 @@ import { toast } from "react-toastify"; const PostSection = () =>{ const [postString,setPostString] = useState(""); - const [isUpdate, setIsUpdate] = useState(false); + //remove this const {state,dispatch}=useContext(PostContext); - const {postToUpdate,postToUpdateKey,user}=state; + const {postToUpdate,postToUpdateKey,user,isUpdate}=state; useEffect(()=>{ if(postToUpdate) { @@ -29,7 +29,11 @@ const PostSection = () =>{ // alert("use effect triggered!"); setPostString(postToUpdate.postString); console.log(postToUpdate,postToUpdateKey); - setIsUpdate(true); + dispatch({ + type:UPDATE_POST, + update:true, + }); + } },[postToUpdate]); const email=user.email; @@ -78,7 +82,11 @@ const handleSubmit = e =>{ if(isUpdate===true) { alert("Please don't leave the update field blank"); - setIsUpdate(false); + //isupdate + dispatch({ + type:UPDATE_POST, + update:false, + }); return; } else{ @@ -89,7 +97,11 @@ const handleSubmit = e =>{ isUpdate ? updatePost() : addPost(); setPostString(''); - setIsUpdate(false); + + dispatch({ + type:UPDATE_POST, + update:false, + }); dispatch({ type:POST_TO_UPDATE, diff --git a/src/Components/Posts.js b/src/Components/Posts.js index 6ee0517..e72d1d1 100644 --- a/src/Components/Posts.js +++ b/src/Components/Posts.js @@ -12,6 +12,7 @@ import { toast } from 'react-toastify'; import 'firebase/database'; +import { IconContext } from 'react-icons'; const Posts = () => { const {state,dispatch}= useContext(PostContext);//MISTAKE :used useReducer instead of useContext @@ -59,9 +60,11 @@ const updateContact=(keyy,value)=>{ {value.postString} {(value.email===user.email) ?( - + + updateContact(key,value)}className="ml-2"/> deleteContact(key)} className="text-danger icon"/> + ):(console.log('h'))} diff --git a/src/Components/SignInBody.js b/src/Components/SignInBody.js index da9a4ee..748569b 100644 --- a/src/Components/SignInBody.js +++ b/src/Components/SignInBody.js @@ -43,7 +43,8 @@ const SignInBody = () =>{ type:"error" }) }) - toast("Signed in Successfully!",{type:"success"}); + toast("Signed in Successfully!",{type:"success"}) + } const handleFormSubmit = e =>{ diff --git a/src/Context/actions.types.js b/src/Context/actions.types.js index 8524c09..37ee23a 100644 --- a/src/Context/actions.types.js +++ b/src/Context/actions.types.js @@ -3,3 +3,4 @@ export const SET_POST = "SET_POST"; export const POST_TO_UPDATE = "POST_TO_UPDATE"; export const SET_USER = "SET_USER"; export const UNSET_USER = "UNSET_USER"; +export const UPDATE_POST = "UPDATE_POST"; diff --git a/src/Context/reducer.js b/src/Context/reducer.js index 24032fc..5a9e0e2 100644 --- a/src/Context/reducer.js +++ b/src/Context/reducer.js @@ -2,7 +2,8 @@ import { POST_TO_UPDATE, SET_LOADING, SET_POST, SET_USER, - UNSET_USER} from "./actions.types"; + UNSET_USER, + UPDATE_POST} from "./actions.types"; export default (state,action) =>{ switch (action.type) { @@ -31,7 +32,12 @@ export default (state,action) =>{ return{ ...state,user:{ }, - } + } + case UPDATE_POST: + return{ + ...state, + isUpdate:action.update, //update will say whether to set true or false + } default: return state; } diff --git a/src/css/LandingBody.css b/src/css/LandingBody.css index 5279283..33fef6e 100644 --- a/src/css/LandingBody.css +++ b/src/css/LandingBody.css @@ -1,6 +1,6 @@ .landpage{ text-align: center; - height:590px; + height:auto; border: 3px solid black; background-color: rgb(71, 255, 71); } @@ -9,4 +9,9 @@ size: 35px; width: 55px; height: 31px; +} +.intro{ + font-family: 'Ubuntu', sans-serif; + padding:2px; + font-size: 24px; } \ No newline at end of file diff --git a/src/css/PostSection.css b/src/css/PostSection.css index 467b7e2..56d7e33 100644 --- a/src/css/PostSection.css +++ b/src/css/PostSection.css @@ -27,7 +27,7 @@ } .button1{ margin-left: 23px; - height: 31px; + height: 47px; border-radius: 20px; /* text-align: center; position: absolute; diff --git a/src/css/Posts.css b/src/css/Posts.css index ecf29f7..2a38f77 100644 --- a/src/css/Posts.css +++ b/src/css/Posts.css @@ -50,5 +50,8 @@ background-color: rgb(86, 197, 66); -webkit-text-decoration: solid; text-decoration: solid; } +.editicon{ + margin:5px; +} \ No newline at end of file From 7f1e67f62b58636dd7cfa6c7eb0952d6ba5c9347 Mon Sep 17 00:00:00 2001 From: coder_023 Date: Sun, 27 Jun 2021 15:06:58 +0530 Subject: [PATCH 07/11] Resolved one bug related to re updating --- src/Components/PostSection.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Components/PostSection.js b/src/Components/PostSection.js index 70929d1..6c3ef1f 100644 --- a/src/Components/PostSection.js +++ b/src/Components/PostSection.js @@ -81,6 +81,11 @@ const handleSubmit = e =>{ { if(isUpdate===true) { + dispatch({ + type:POST_TO_UPDATE, + payload:null, + key:null + }); alert("Please don't leave the update field blank"); //isupdate dispatch({ From db83f0ea4499185e25d1229b5113e72c70b622d3 Mon Sep 17 00:00:00 2001 From: coder_023 Date: Sun, 27 Jun 2021 17:27:31 +0530 Subject: [PATCH 08/11] Firebase integration --- .firebaserc | 5 +++++ .github/workflows/firebase-hosting-merge.yml | 20 +++++++++++++++++++ .../firebase-hosting-pull-request.yml | 17 ++++++++++++++++ firebase.json | 16 +++++++++++++++ package.json | 2 +- 5 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 .firebaserc create mode 100644 .github/workflows/firebase-hosting-merge.yml create mode 100644 .github/workflows/firebase-hosting-pull-request.yml create mode 100644 firebase.json diff --git a/.firebaserc b/.firebaserc new file mode 100644 index 0000000..c5a3a29 --- /dev/null +++ b/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "feelingz-app" + } +} diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml new file mode 100644 index 0000000..d80388b --- /dev/null +++ b/.github/workflows/firebase-hosting-merge.yml @@ -0,0 +1,20 @@ +# This file was auto-generated by the Firebase CLI +# https://github.com/firebase/firebase-tools + +name: Deploy to Firebase Hosting on merge +'on': + push: + branches: + - master +jobs: + build_and_deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: npm run build + - uses: FirebaseExtended/action-hosting-deploy@v0 + with: + repoToken: '${{ secrets.GITHUB_TOKEN }}' + firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_FEELINGZ_APP }}' + channelId: live + projectId: feelingz-app diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml new file mode 100644 index 0000000..e568d2f --- /dev/null +++ b/.github/workflows/firebase-hosting-pull-request.yml @@ -0,0 +1,17 @@ +# This file was auto-generated by the Firebase CLI +# https://github.com/firebase/firebase-tools + +name: Deploy to Firebase Hosting on PR +'on': pull_request +jobs: + build_and_preview: + if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: npm run build + - uses: FirebaseExtended/action-hosting-deploy@v0 + with: + repoToken: '${{ secrets.GITHUB_TOKEN }}' + firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_FEELINGZ_APP }}' + projectId: feelingz-app diff --git a/firebase.json b/firebase.json new file mode 100644 index 0000000..340ed5b --- /dev/null +++ b/firebase.json @@ -0,0 +1,16 @@ +{ + "hosting": { + "public": "build", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ] + } +} diff --git a/package.json b/package.json index 430f906..cfc8c96 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "browserslist": { "production": [ ">0.2%", - "not dead", + "not op_mini all" ], "development": [ From 276f98ccb8a48af967266fb85aa1d7b9d78f72b9 Mon Sep 17 00:00:00 2001 From: coder_023 Date: Sun, 27 Jun 2021 17:32:12 +0530 Subject: [PATCH 09/11] bit modification --- .firebase/hosting.YnVpbGQ.cache | 14 ++++++++++++++ .github/workflows/firebase-hosting-merge.yml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .firebase/hosting.YnVpbGQ.cache diff --git a/.firebase/hosting.YnVpbGQ.cache b/.firebase/hosting.YnVpbGQ.cache new file mode 100644 index 0000000..9045674 --- /dev/null +++ b/.firebase/hosting.YnVpbGQ.cache @@ -0,0 +1,14 @@ +asset-manifest.json,1624793765970,5df47d21d9d4cf39c957cb93d0ce27d9a40df7d369f4d958d86ccc44370f3a9b +favicon.ico,1624793713980,eae62e993eb980ec8a25058c39d5a51feab118bd2100c4deebb2a9c158ec11f9 +index.html,1624794802384,e895af45386461c1228a958cf7d8fee8a4b53d50605edfb9c500c06d2e0086fc +logo192.png,1624793713982,3ee59515172ee198f3be375979df15ac5345183e656720a381b8872b2a39dc8b +manifest.json,1624793713984,aff3449bdc238776f5d6d967f19ec491b36aed5fb7f23ccff6500736fd58494a +robots.txt,1624793713985,bfe106a3fb878dc83461c86818bf74fc1bdc7f28538ba613cd3e775516ce8b49 +logo512.png,1624793713983,ee7e2f3fdb8209c4b6fd7bef6ba50d1b9dba30a25bb5c3126df057e1cb6f5331 +service-worker.js,1624793766682,b6b92385f38d6ea79610fbac0ab13ba5b5ff70df0e29b21d89c8427e4a45aef8 +static/css/main.f3e99c8e.css,1624793766065,55077fcdf4d6357d14fb33e3c2eae41d002c59bf680e4a8a2f671dcf11d047d9 +static/js/0.e112e155.chunk.js,1624793765971,771c480e3effe299beb69f78c2e9ba7da172988b1d604bc52ee904584e522f1e +static/css/main.f3e99c8e.css.map,1624793766065,3865e44df0761c1fd59092c96e8234a2e36b8ce8464467ceafbbc999079ddf82 +static/js/0.e112e155.chunk.js.map,1624793766064,6c8b930e05718e32f4ee647fd26496f6d243b4ef54de85144bfca825ad87075c +static/js/main.bbae4a20.js,1624793766065,550ac7699b14bc6dd1da55b927d3c7df74f7d30c28fd2b61f296b37330ebaf17 +static/js/main.bbae4a20.js.map,1624793766161,38b8728b6db72d8f808f843d56b526965fd23801dc415c15f8b958a7f1509954 diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index d80388b..8d03dfe 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: npm run build + - run: npm start - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}' From 7148d873961dc7c157a0bcf3e305167844e76636 Mon Sep 17 00:00:00 2001 From: coder_023 Date: Sun, 27 Jun 2021 17:39:08 +0530 Subject: [PATCH 10/11] Reset to default --- .firebase/hosting.YnVpbGQ.cache | 14 ------------- .firebaserc | 5 ----- .github/workflows/firebase-hosting-merge.yml | 20 ------------------- .../firebase-hosting-pull-request.yml | 17 ---------------- firebase.json | 16 --------------- 5 files changed, 72 deletions(-) delete mode 100644 .firebase/hosting.YnVpbGQ.cache delete mode 100644 .firebaserc delete mode 100644 .github/workflows/firebase-hosting-merge.yml delete mode 100644 .github/workflows/firebase-hosting-pull-request.yml delete mode 100644 firebase.json diff --git a/.firebase/hosting.YnVpbGQ.cache b/.firebase/hosting.YnVpbGQ.cache deleted file mode 100644 index 9045674..0000000 --- a/.firebase/hosting.YnVpbGQ.cache +++ /dev/null @@ -1,14 +0,0 @@ -asset-manifest.json,1624793765970,5df47d21d9d4cf39c957cb93d0ce27d9a40df7d369f4d958d86ccc44370f3a9b -favicon.ico,1624793713980,eae62e993eb980ec8a25058c39d5a51feab118bd2100c4deebb2a9c158ec11f9 -index.html,1624794802384,e895af45386461c1228a958cf7d8fee8a4b53d50605edfb9c500c06d2e0086fc -logo192.png,1624793713982,3ee59515172ee198f3be375979df15ac5345183e656720a381b8872b2a39dc8b -manifest.json,1624793713984,aff3449bdc238776f5d6d967f19ec491b36aed5fb7f23ccff6500736fd58494a -robots.txt,1624793713985,bfe106a3fb878dc83461c86818bf74fc1bdc7f28538ba613cd3e775516ce8b49 -logo512.png,1624793713983,ee7e2f3fdb8209c4b6fd7bef6ba50d1b9dba30a25bb5c3126df057e1cb6f5331 -service-worker.js,1624793766682,b6b92385f38d6ea79610fbac0ab13ba5b5ff70df0e29b21d89c8427e4a45aef8 -static/css/main.f3e99c8e.css,1624793766065,55077fcdf4d6357d14fb33e3c2eae41d002c59bf680e4a8a2f671dcf11d047d9 -static/js/0.e112e155.chunk.js,1624793765971,771c480e3effe299beb69f78c2e9ba7da172988b1d604bc52ee904584e522f1e -static/css/main.f3e99c8e.css.map,1624793766065,3865e44df0761c1fd59092c96e8234a2e36b8ce8464467ceafbbc999079ddf82 -static/js/0.e112e155.chunk.js.map,1624793766064,6c8b930e05718e32f4ee647fd26496f6d243b4ef54de85144bfca825ad87075c -static/js/main.bbae4a20.js,1624793766065,550ac7699b14bc6dd1da55b927d3c7df74f7d30c28fd2b61f296b37330ebaf17 -static/js/main.bbae4a20.js.map,1624793766161,38b8728b6db72d8f808f843d56b526965fd23801dc415c15f8b958a7f1509954 diff --git a/.firebaserc b/.firebaserc deleted file mode 100644 index c5a3a29..0000000 --- a/.firebaserc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "projects": { - "default": "feelingz-app" - } -} diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml deleted file mode 100644 index 8d03dfe..0000000 --- a/.github/workflows/firebase-hosting-merge.yml +++ /dev/null @@ -1,20 +0,0 @@ -# This file was auto-generated by the Firebase CLI -# https://github.com/firebase/firebase-tools - -name: Deploy to Firebase Hosting on merge -'on': - push: - branches: - - master -jobs: - build_and_deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - run: npm start - - uses: FirebaseExtended/action-hosting-deploy@v0 - with: - repoToken: '${{ secrets.GITHUB_TOKEN }}' - firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_FEELINGZ_APP }}' - channelId: live - projectId: feelingz-app diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml deleted file mode 100644 index e568d2f..0000000 --- a/.github/workflows/firebase-hosting-pull-request.yml +++ /dev/null @@ -1,17 +0,0 @@ -# This file was auto-generated by the Firebase CLI -# https://github.com/firebase/firebase-tools - -name: Deploy to Firebase Hosting on PR -'on': pull_request -jobs: - build_and_preview: - if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - run: npm run build - - uses: FirebaseExtended/action-hosting-deploy@v0 - with: - repoToken: '${{ secrets.GITHUB_TOKEN }}' - firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_FEELINGZ_APP }}' - projectId: feelingz-app diff --git a/firebase.json b/firebase.json deleted file mode 100644 index 340ed5b..0000000 --- a/firebase.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "hosting": { - "public": "build", - "ignore": [ - "firebase.json", - "**/.*", - "**/node_modules/**" - ], - "rewrites": [ - { - "source": "**", - "destination": "/index.html" - } - ] - } -} From fda4df2378bb4efc5cb0238426666c4180426822 Mon Sep 17 00:00:00 2001 From: Mukul Borole <66404376+coder-023@users.noreply.github.com> Date: Sat, 3 Jul 2021 11:04:51 +0530 Subject: [PATCH 11/11] Update README.md --- README.md | 75 +++++-------------------------------------------------- 1 file changed, 6 insertions(+), 69 deletions(-) diff --git a/README.md b/README.md index 0c83cde..594edff 100644 --- a/README.md +++ b/README.md @@ -1,70 +1,7 @@ -# Getting Started with Create React App -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). - -## Available Scripts - -In the project directory, you can run: - -### `npm start` - -Runs the app in the development mode.\ -Open [http://localhost:3000](http://localhost:3000) to view it in the browser. - -The page will reload if you make edits.\ -You will also see any lint errors in the console. - -### `npm test` - -Launches the test runner in the interactive watch mode.\ -See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. - -### `npm run build` - -Builds the app for production to the `build` folder.\ -It correctly bundles React in production mode and optimizes the build for the best performance. - -The build is minified and the filenames include the hashes.\ -Your app is ready to be deployed! - -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. - -### `npm run eject` - -**Note: this is a one-way operation. Once you `eject`, you can’t go back!** - -If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. - -Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. - -You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. - -## Learn More - -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). - -To learn React, check out the [React documentation](https://reactjs.org/). - -### Code Splitting - -This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) - -### Analyzing the Bundle Size - -This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) - -### Making a Progressive Web App - -This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) - -### Advanced Configuration - -This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) - -### Deployment - -This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) - -### `npm run build` fails to minify - -This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) +# Feelingz-An anonymous platform for people +### This is a prototype-based website which will help people to express their feelings, with identity kept as anonymous. Intention behind this project is to help people to fight their own war against depression. +## Technology Used +### Frontend: HTML, CSS, JS (ReactJS) +### Backend: NodeJS +### Database: Firebase realtime DB