Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nitinhayaran/flickr-photo-grid
Fullstack redis backed app to show flickr photos in grid
https://github.com/nitinhayaran/flickr-photo-grid
Last synced: about 1 month ago
JSON representation
Fullstack redis backed app to show flickr photos in grid
- Host: GitHub
- URL: https://github.com/nitinhayaran/flickr-photo-grid
- Owner: nitinhayaran
- Created: 2019-11-04T07:00:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:04:10.000Z (almost 2 years ago)
- Last Synced: 2023-03-11T12:46:24.488Z (almost 2 years ago)
- Language: JavaScript
- Size: 4.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Express based backend application with React frontend.
## Requirements:
- Node 12.3.1
- Redis## Setup
#### API (Backend)
1. `cd api` go into api directory
2. `yarn install` install all the required packages
3. `node index.js` run api serverRedis server must be running on port `6379`, otherwise modify connection parameter in `index.js`.
#### WEB (Frontend)
1. `yarn run build` to build frontend
2. serve start content from `build` folderNOTE : To serve stuff locally during development can also run `yarn run start` which would start serving frontend in development mode.
You should set `REACT_APP_API_URL` environment variable to make calls to backend. Currently its defaulted to `http://localhost:8000`.