https://github.com/nthings/grocerynfc
https://github.com/nthings/grocerynfc
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nthings/grocerynfc
- Owner: nthings
- License: mit
- Created: 2024-04-16T05:49:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T21:35:40.000Z (over 2 years ago)
- Last Synced: 2025-01-27T10:11:44.571Z (over 1 year ago)
- Language: TypeScript
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GroceryNFC
Fullstack solution to manage grocery store with NFC technology.
## Build from source
1. Clone the repo
```sh
git clone git@github.com:rsbh/GroceryNFC.git
cd GroceryNFC
```
2. Install dependencies.
```sh
npm install
```
3. Build the production server.
```sh
npm build
```
4. Run the server.
```sh
npm start
```
## Build Docker image locally
```sh
docker build -t GroceryNFC .
```
## Run tests
```sh
npm test
```