Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/binaryshrey/chronos

🧰 Project management and issue tracking for everyone
https://github.com/binaryshrey/chronos

fastapi firebase firebase-firestore javascript material-ui python reactjs supabase tailwindcss typescript vercel

Last synced: 13 days ago
JSON representation

🧰 Project management and issue tracking for everyone

Awesome Lists containing this project

README

        

# Chronos ![GitHub deployments](https://img.shields.io/github/deployments/binaryshrey/chronos/production?style=flat&logo=vercel&label=vercel)

A minimalistic kanban board app : project management and issue tracking for everyone - [View](https://chronos-inc.vercel.app/)

![Banner](https://raw.githubusercontent.com/binaryshrey/Chronos/main/chronos-product.png)

### Development setup

```
git clone https://github.com/binaryshrey/Chronos.git
cd Chronos
npm i
npm run start
```

#### Firebase configs
- Create a .env file for Firebase
```
REACT_APP_FIREBASE_API_KEY=**********
REACT_APP_FIREBASE_AUTHDOMAIN=**********.firebaseapp.com
REACT_APP_FIREBASE_PROJECTID=**********
REACT_APP_FIREBASE_STORAGE_BUCKET=**********.appspot.com
REACT_APP_FIREBASE_MESSAGESENDER_ID=**********
REACT_APP_FIREBASE_APPID=**********
REACT_APP_FIREBASE_MEASUREMENTID=**********
```

- Include Google & Github Auth under Firebase Authentication
- Include Firebase-Firestore with below prod db-rule:
```
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /users/{uid} {
allow read, create, update, delete: if request.auth != null;

}
}
}
```

Development server runs at `http://localhost:3000`