Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mbrsagor/pythonfirestore
- Owner: mbrsagor
- Created: 2020-04-06T18:53:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T09:04:03.000Z (5 months ago)
- Last Synced: 2024-06-27T10:29:14.270Z (5 months ago)
- Topics: firestore, python-3
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.Md
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
```