https://github.com/lordlabakdas/groceror
Groceror - Make your Grocer a sorceror
https://github.com/lordlabakdas/groceror
fastapi grocery open-source postgres python3 sqlmodel
Last synced: 4 months ago
JSON representation
Groceror - Make your Grocer a sorceror
- Host: GitHub
- URL: https://github.com/lordlabakdas/groceror
- Owner: lordlabakdas
- Created: 2018-10-27T09:32:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-04T22:31:00.000Z (10 months ago)
- Last Synced: 2025-08-05T00:41:13.682Z (10 months ago)
- Topics: fastapi, grocery, open-source, postgres, python3, sqlmodel
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# grocerer - A platform for any shop owner
- An interface between the local grocery store owner and the consumer
- Primarily a store owner driven platform as opposed to ind. decider
- Allow the small business store to act like a supermarket
- eg. rewards programs
- Social good
- building micro-communities
-----
## Prerequisites
- Python 3.6 or higher
- pip (Python package manager)
- venv (Python virtual environment)
-----
## Installation
1. Clone the repository: `git clone git@github.com:lordlabakdas/groceror.git`
2. cd to app: `cd groceror`
## Install Dependencies
3. Create a virtual environment and activate it:
```shell
On Windows:
$ python -m venv venv
$ .\venv\Scripts\activate
On Mac/Linux:
$ python3 -m venv venv
$ source venv/bin/activate
```
4. Install the required packages using `requirements.txt`:
```bash
$ pip install -r requirements.txt
```
-----
## Running the application
5. Run the application
```bash
$ uvicorn main:app --host 0.0.0.0 --port 8000 --reload
```
6. Access the application
ow you can access the application at `http://localhost:8000` or `http://:8000`