Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mbrsagor/pythonfirestore

Python FireStore simple CRUD app
https://github.com/mbrsagor/pythonfirestore

firestore python-3

Last synced: 1 day ago
JSON representation

Python FireStore simple CRUD app

Awesome Lists containing this project

README

        

# python FireStore

> Python firestore realtime simple CRUD app.

### Setup

The following steps will walk you through installation on a Mac. Linux should be similar.
It's also possible to develop on a Windows machine, but I have not documented the steps.
If you've developed Django apps on Windows, you should have little problem getting
up and running.

#### Dependencies
###### Prerequisites

- Python 3.10

```bash
git clone https://github.com/mbrsagor/pythonFireStore.git
cd pythonFireStore
```

> Then,

> Create virtualenv in your system then follow the comments:
```bash
virtualenv venv --python=python3.10
```

> If you successfully create the virtualenv then activate:
```bash
source venv/bin/activate
pip install -r requirements.txt
```