{"id":18621011,"url":"https://github.com/bibeklakra91/newsflash","last_synced_at":"2026-04-13T16:32:37.076Z","repository":{"id":246885506,"uuid":"824079101","full_name":"BibekLakra91/NewsFlash","owner":"BibekLakra91","description":"Webapp for quick personal updates, just like tweeter.  Basic full-stack app to understand the fundamentals. Tech stack: [ Django, AWS s3, Vercel, PostgreSQL + Railway ]","archived":false,"fork":false,"pushed_at":"2024-07-30T18:20:28.000Z","size":1759,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T04:35:13.899Z","etag":null,"topics":["aws-s3","django","postgresql","vercel"],"latest_commit_sha":null,"homepage":"https://news-flash-five.vercel.app/","language":"JavaScript","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/BibekLakra91.png","metadata":{"files":{"readme":"README.md","changelog":"NewsFlash/__init__.py","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-04T10:16:11.000Z","updated_at":"2024-07-30T18:20:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"25af1251-60cc-4652-9611-f8cbc01915da","html_url":"https://github.com/BibekLakra91/NewsFlash","commit_stats":null,"previous_names":["bibeklakra91/django-tweet"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BibekLakra91/NewsFlash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BibekLakra91%2FNewsFlash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BibekLakra91%2FNewsFlash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BibekLakra91%2FNewsFlash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BibekLakra91%2FNewsFlash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BibekLakra91","download_url":"https://codeload.github.com/BibekLakra91/NewsFlash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BibekLakra91%2FNewsFlash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31761866,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"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":["aws-s3","django","postgresql","vercel"],"created_at":"2024-11-07T04:08:51.877Z","updated_at":"2026-04-13T16:32:37.037Z","avatar_url":"https://github.com/BibekLakra91.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NewsFlash\n\nNewsFlash is a web application for quick personal updates, similar to Twitter. It is designed to help users understand the fundamentals of a full-stack application. I have added challenges I faced as well as bullet points for resume as well\n\n## Tech Stack\n- **Backend:** Django\n- **Frontend:** HTML, CSS templates \u0026 Boostraped code\n- **Database:** PostgreSQL \n- **Hosting:** Vercel, AWS S3, Railway\n\n## Features\n- Post personal updates\n- View updates from other users\n- Media storage with AWS S3\n- Deployed on Vercel with PostgreSQL database managed by Railway\n\n## Getting Started\n\n### Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/BibekLakra91/NewsFlash.git\n   cd NewsFlash\n   ```\n\n2. Install dependencies:\n   ```\n    pip install -r requirements.txt\n   ```\n    ```\n    pip install psycopg2\n    ```\n    Vercel absolutely hate psycopg2, I have not added this to requirements.txt but it is necessary to run on local server. Remove this package before creating PRs\n\n3. Create .env file and populate these fields\n    ```\n    AWS_ACCESS_KEY_ID = \u003cYOUR_AWS_ACCESS_KEY_ID\u003e\n    AWS_SECRET_ACCESS_KEY = \u003cYOUR_AWS_SECRET_ACCESS_KEY\u003e\n    AWS_STORAGE_BUCKET_NAME = \u003cYOUR_AWS_STORAGE_BUCKET_NAME\u003e\n    AWS_S3_REGION_NAME = \u003cAWS_S3_REGION_NAME\u003e\n    \n    DB_NAME = \u003cYOUR_DATABASE_NAME\u003e\n    DB_USER = \u003cYOUR_DATABASE_USER\u003e\n    DB_PASSWORD = \u003cYOUR_DATABASE_PASSWORD\u003e\n    DB_HOST = \u003cYOUR_DATABASE_HOST\u003e\n    DB_PORT = \u003cYOUR_DATABASE_PORT\u003e\n    ```\n3. Set up the database:\n   ```bash\n   python manage.py migrate\n   ```\n\n4. Run the server:\n   ```bash\n   python manage.py runserver\n   ```\n\n5. Open your browser and go to `http://127.0.0.1:8000/`\n\n## Contributing\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Commit your changes (`git commit -m 'Add new feature'`).\n4. Push to the branch (`git push origin feature-branch`).\n5. Open a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbibeklakra91%2Fnewsflash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbibeklakra91%2Fnewsflash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbibeklakra91%2Fnewsflash/lists"}