base-chat
base-chat copied to clipboard
How I ran it...
Step1. Create your firebase project, copy the link to firebase variable and paste it on environment.ts file.
Step2. Open the terminal, and run npm install
Step3. run npm install --s [email protected] @angular/fire
Step4. Open every css file and remove the background attribute:
#logo{
display: inline-block;
/* background: url('../../assets/img/logo.png') no-repeat;*/
background-size: cover;
margin: 12px 10px 12px 32px;
width: 60px;
height: 60px;
min-width: 60px;
}
or you can comment the background.
Step5. Run ng serve
Step1. Create your firebase project, copy the link to firebase variable and paste it on environment.ts file. Step2. Open the terminal, and run npm install Step3. run npm install --s [email protected] @angular/fire Step4. Open every css file and remove the background attribute: #logo{ display: inline-block; /* background: url('../../assets/img/logo.png') no-repeat;*/ background-size: cover; margin: 12px 10px 12px 32px; width: 60px; height: 60px; min-width: 60px; } or you can comment the background. Step5. Run ng serve
So you need to make a firebase app, register and connect it with this project in order for it to run?