Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anze3db/hipster-frame
Creates a dynamic picture frame from your Instagram feed
https://github.com/anze3db/hipster-frame
Last synced: 7 days ago
JSON representation
Creates a dynamic picture frame from your Instagram feed
- Host: GitHub
- URL: https://github.com/anze3db/hipster-frame
- Owner: anze3db
- License: mit
- Created: 2014-03-22T22:48:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-01-23T11:49:40.000Z (almost 6 years ago)
- Last Synced: 2024-11-01T04:42:39.733Z (about 2 months ago)
- Language: Python
- Homepage: https://hipsterframe.com
- Size: 346 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hipster Frame [![CircleCI](https://circleci.com/gh/Smotko/hipster-frame.svg?style=svg)](https://circleci.com/gh/Smotko/hipster-frame) [![codecov](https://codecov.io/gh/Smotko/hipster-frame/branch/master/graph/badge.svg)](https://codecov.io/gh/Smotko/hipster-frame)
## Set up dev environment
```bash
# Create a local docker-compose.yaml file and add the Instagram API keys:
$ cp docker-compose.override.yml{.example,} && vim docker-compose.override.yml
# Run the app (it will be available on localhost:8080):
$ docker-compose up
```## Running tests
```bash
# Run continuous test runner for api:
$ docker-compose run api ptw
# Run pylint for api:
$ docker-compose run api pylint src
# Run continuous test runner for frontend:
$ docker-compose run frontend npm test -- --watch
```