{"id":19886057,"url":"https://github.com/rishabkumar7/flask-blog-pulumi","last_synced_at":"2026-04-09T08:55:48.573Z","repository":{"id":210952730,"uuid":"727257664","full_name":"rishabkumar7/flask-blog-pulumi","owner":"rishabkumar7","description":"This is a blog web app built using Flask and AWS DynamoDB, deployed using Pulumi as IaC tool.","archived":false,"fork":false,"pushed_at":"2023-12-11T07:36:34.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-11T18:47:47.744Z","etag":null,"topics":["aws","blog","dynamodb","flask","pulumi"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/rishabkumar7.png","metadata":{"files":{"readme":"README.md","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-04T14:01:17.000Z","updated_at":"2023-12-05T17:36:59.000Z","dependencies_parsed_at":"2023-12-11T08:34:17.888Z","dependency_job_id":null,"html_url":"https://github.com/rishabkumar7/flask-blog-pulumi","commit_stats":null,"previous_names":["rishabkumar7/flask-blog-pulumi"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fflask-blog-pulumi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fflask-blog-pulumi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fflask-blog-pulumi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabkumar7%2Fflask-blog-pulumi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rishabkumar7","download_url":"https://codeload.github.com/rishabkumar7/flask-blog-pulumi/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241313176,"owners_count":19942417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","blog","dynamodb","flask","pulumi"],"created_at":"2024-11-12T17:36:07.310Z","updated_at":"2026-04-09T08:55:43.553Z","avatar_url":"https://github.com/rishabkumar7.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask Blog App with DynamoDB\n\nThis project is a simple blog application built with Flask, a micro web framework written in Python. The application uses Amazon DynamoDB as its backend database, demonstrating the integration of a Flask application with AWS services.\n\n## Features\n\n- Create, view, and list blog posts\n- Backend storage with AWS DynamoDB\n- Simple UI using Bootstrap\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n\nWhat things you need to install the software and how to install them:\n\n- Python 3.8 or later\n- Flask\n- Boto3 (AWS SDK for Python)\n- AWS account and credentials\n\n### Installing\n\nA step-by-step series of examples that tell you how to get a development environment running:\n\n1. **Clone the repository**\n\n   ```bash\n   git clone https://github.com/rishabkumar7/flask-blog-pulumi.git\n   cd flask-blog-pulumi/src\n   ```\n\n2. **Set up a virtual environment (optional but recommended)**:\n\n  ```bash\n  python -m venv venv\n  source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n  ```\n\n3. **Install required packages:**\n\n  ```bash\n  pip install -r requirements.txt\n  ```\n\n4. **Set up AWS Credentials:**\n\nEnsure your AWS credentials are set up correctly in your environment.\nLook at the `.env.example`\n\n5. **Run the application:**\n\n  ``` bash\n  flask run\n  ```\n\nYour app should now be running on http://localhost:5000.\n\n## Configuration\n\nAWS DynamoDB Table: Make sure to create a DynamoDB table with the required schema.\n\nPrimary Key:\n`post_id` (String) - A unique identifier for each blog post, usually a UUID.\n\nAttributes:\n\n- post_id (String) - Unique identifier for the post.\n- title (String) - The title of the blog post.\n- content (String) - The main content/body of the blog post.\n- author (String) - The author's name or identifier.\n- date (String or Number) - The date the post was created or published. This could be a string in ISO format or a Unix timestamp.\n- tags (List of Strings) - Tags or categories associated with the post.\n\n``` json\n{\n  \"post_id\": \"123e4567-e89b-12d3-a456-426614174000\",\n  \"title\": \"My First Blog Post\",\n  \"content\": \"This is the content of my first blog post...\",\n  \"author\": \"Jane Doe\",\n  \"date\": \"2023-03-01T12:00:00Z\",\n  \"tags\": [\"Cloud\", \"AWS\"],\n  \"status\": \"published\"\n}\n```\n\n## Usage\n\nThe application is straightforward to use. Navigate to the home page to view a list of blog posts. Use the 'Create New Post' button to add a new blog post.\n\n## Contributing\n\nPlease read `CONTRIBUTING.md`` for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Authors\n\nRishab Kumar - @rishabkumar7\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabkumar7%2Fflask-blog-pulumi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishabkumar7%2Fflask-blog-pulumi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabkumar7%2Fflask-blog-pulumi/lists"}