https://github.com/ahmedhossam01/dothingss
A Todo-List App w/ Vue, Vuex, Vuetify and Firebase
https://github.com/ahmedhossam01/dothingss
firebase firestore todoapp todolist todolist-application vue vuetify vuex
Last synced: 1 day ago
JSON representation
A Todo-List App w/ Vue, Vuex, Vuetify and Firebase
- Host: GitHub
- URL: https://github.com/ahmedhossam01/dothingss
- Owner: AhmedHossam01
- Created: 2020-05-26T09:49:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T11:30:14.000Z (almost 3 years ago)
- Last Synced: 2025-06-20T12:44:40.766Z (4 months ago)
- Topics: firebase, firestore, todoapp, todolist, todolist-application, vue, vuetify, vuex
- Language: Vue
- Homepage: https://dothingss.netlify.app/
- Size: 6.15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dothings
Fully functioning Todo-List Application with Vue/Vuetify/Vuex/Firebase.
Live Preview: https://dothingss.netlify.app/
## Main Features
- Ability to add todos
- Ability to create categories
- Authentication & Role based authorization
- Todos & Categories private to each account
- Error handling
- Clean UI & UX## Pictures


## Available Scripts
1. `npm run serve` => To start the development server.
2. `npm run build` => To create the production build.
3. `npm run lint` => To run eslint on project files.## Installation Instructions
1. Run `npm install` to install packages
2. Create a file in the root folder called `firebase.js` and fill it with:
```javascript
import firebase from "firebase";
import "firebase/firestore";let firebaseConfig = {
// YOUR FIREBASE CONFIG
};const firebaseApp = firebase.initializeApp(firebaseConfig);
const fireStore = firebaseApp.firestore();export default fireStore;
```