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

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

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`