{"id":21522054,"url":"https://github.com/kylepw/panner","last_synced_at":"2026-03-09T10:33:49.210Z","repository":{"id":46856776,"uuid":"197811744","full_name":"kylepw/panner","owner":"kylepw","description":"Django+Postgres+Redis-powered web app to keep track of friends in one place.","archived":false,"fork":false,"pushed_at":"2022-12-08T03:13:08.000Z","size":5519,"stargazers_count":4,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-09T22:41:21.897Z","etag":null,"topics":["django","meetup","python","reddit","sns","spotify","twitter","webapp"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kylepw.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-19T16:53:22.000Z","updated_at":"2022-07-07T16:25:46.000Z","dependencies_parsed_at":"2023-01-24T21:15:44.478Z","dependency_job_id":null,"html_url":"https://github.com/kylepw/panner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kylepw/panner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylepw%2Fpanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylepw%2Fpanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylepw%2Fpanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylepw%2Fpanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kylepw","download_url":"https://codeload.github.com/kylepw/panner/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylepw%2Fpanner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30291807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","meetup","python","reddit","sns","spotify","twitter","webapp"],"created_at":"2024-11-24T01:09:10.366Z","updated_at":"2026-03-09T10:33:49.190Z","avatar_url":"https://github.com/kylepw.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"======\nPanner\n======\nDjango+Postgres+Redis-powered web app to keep track of friends.\n\nTry it: https://panner.herokuapp.com\n\n.. image:: screenshots/Panner.gif\n\nFeatures\n--------\n- Supports: Meetup, Reddit, Spotify, and Twitter accounts.\n- Simple, easy-to-navigate interface.\n- Timesaver.\n- Redis caching for faster load times.\n- Mobile responsive.\n- Robust test coverage.\n\nRequirements\n------------\n- Python 3.6+\n- API client ID/secret values\n- Docker_ (highly recommended)\n\nClient ID/Secret Values\n-----------------------\n.. _values:\n\n- Before running this app, you must acquire client ID/secret values from services that you will use (one or more): Meetup_, Reddit_, Spotify_, and/or Twitter_. Use ``http://127.0.0.1:8000`` as the callback URI.\n\nRun (in Docker)\n-----------------\n- Get Docker_.\n\n- Clone, set values_, and run in **Django+Postgres+Redis+Gunicorn+Nginx** configuration: ::\n\n    $ git clone https://github.com/kylepw/panner.git \u0026\u0026 cd panner\n    $ cp env_template .env \u0026\u0026 vim .env\n    $ docker-compose up --build\n\n- Open ``http://127.0.0.1:8000`` in a browser.\n\nRun (on Django development web server)\n----------------------------------------\n- Start Postgres and Redis servers (with Docker like here or another method): ::\n\n    $ docker run --name db -p 5432:5432 -d postgres:11\n    $ docker run --name redis -p 6379:6379 -d redis:5\n\n- Clone, install dependencies, set values_, setup database, and run::\n\n    $ git clone https://github.com/kylepw/panner.git \u0026\u0026 cd panner\n    $ pip install pipenv \u0026\u0026 pipenv install\n    $ cp env_template .env \u0026\u0026 vim .env\n    $ pipenv shell\n    (panner)$ # Postgres \u0026 Redis servers should be running at this point.\n    (panner)$ export DB_HOST=127.0.0.1 REDIS_URL=redis://127.0.0.1:6379/1\n    (panner)$ ./manage.py migrate \u0026\u0026 ./manage.py loaddata people\n    (panner)$ DEBUG=1 ./manage.py runserver\n    ...\n    Starting development server at http://127.0.0.1:8000/\n    Quit the server with CONTROL-C.\n\n- Open ``http://127.0.0.1:8000`` in a browser.\n\nTests\n-----\n- Run Django tests from top of project::\n\n    $ pipenv shell\n    (panner)$ docker run --name db -p 5432:5432 -d postgres:11\n    (panner)$ docker run --name redis -p 6379:6379 -d redis:5\n    (panner)$ export DB_HOST=127.0.0.1 REDIS_URL=redis://127.0.0.1:6379/1\n    (panner)$ python manage.py test\n\n- Run api unit tests from sns directory::\n\n    $ pipenv shell \u0026\u0026 cd sns\n    sns (panner)$ python -m unittest discover api\n\nTodo\n----\n- Add Github API support.\n- Multiple user account support.\n\nLicense\n-------\n`MIT License \u003chttps://github.com/kylepw/panner/blob/master/LICENSE\u003e`_\n\n.. _Docker: https://www.docker.com/products/docker-desktop\n.. _Meetup: https://www.meetup.com/meetup_api/\n.. _Reddit: https://www.reddit.com/prefs/apps\n.. _Spotify: https://developer.spotify.com/dashboard/login\n.. _Twitter: https://developer.twitter.com/en/apply/user\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkylepw%2Fpanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkylepw%2Fpanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkylepw%2Fpanner/lists"}