https://github.com/creative-tutorials/task-managemnt-app
https://github.com/creative-tutorials/task-managemnt-app
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/creative-tutorials/task-managemnt-app
- Owner: creative-tutorials
- Created: 2022-02-15T18:48:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T11:41:16.000Z (over 3 years ago)
- Last Synced: 2025-06-03T02:10:02.263Z (7 months ago)
- Language: JavaScript
- Size: 746 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Task-Managemnt-App
In this app I've used Firebase and JavaScript
to be able to use firebase you will have to initialize firebase
you can start intializing your firebase app by installing it using `npm`
```bash
$ npm install firebase
```
Step 2: intializing full concept
```javascript
import { initializeApp } from 'firebase/app';
```
```js
// TODO: Replace the following with your app's Firebase project configuration
const firebaseConfig = {
//...
};
const app = initializeApp(firebaseConfig);
```