{"id":17195445,"url":"https://github.com/pal-sandeep/flask-todo-app","last_synced_at":"2025-03-25T08:13:15.904Z","repository":{"id":221095912,"uuid":"753431870","full_name":"Pal-Sandeep/Flask-ToDo-App","owner":"Pal-Sandeep","description":"Simple To Do App using Flask","archived":false,"fork":false,"pushed_at":"2024-02-06T05:40:19.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-30T07:25:10.569Z","etag":null,"topics":["flask","python","todo-app","todoapp"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Pal-Sandeep.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-02-06T05:24:23.000Z","updated_at":"2024-02-06T05:43:13.000Z","dependencies_parsed_at":"2024-02-06T06:33:01.906Z","dependency_job_id":"5ac5424e-4144-409e-9d91-bf29a887ea60","html_url":"https://github.com/Pal-Sandeep/Flask-ToDo-App","commit_stats":null,"previous_names":["pal-sandeep/flask-todo-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pal-Sandeep%2FFlask-ToDo-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pal-Sandeep%2FFlask-ToDo-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pal-Sandeep%2FFlask-ToDo-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pal-Sandeep%2FFlask-ToDo-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pal-Sandeep","download_url":"https://codeload.github.com/Pal-Sandeep/Flask-ToDo-App/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245423192,"owners_count":20612748,"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":["flask","python","todo-app","todoapp"],"created_at":"2024-10-15T01:50:28.315Z","updated_at":"2025-03-25T08:13:15.878Z","avatar_url":"https://github.com/Pal-Sandeep.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask CRUD App README\n\nThis README provides an overview of the Flask CRUD (Create, Read, Update, Delete) application. This application allows users to perform basic CRUD operations on a database using a Flask web server.\n\n## Installation\n\n1. **Clone the Repository**: Clone the repository to your local machine using the following command:\n\n   ```bash\n   git clone https://github.com/Pal-Sandeep/Flask-ToDo-App.git\n   ```\n\n2. **Navigate to the Project Directory**: Change your current directory to the cloned project directory:\n\n   ```bash\n   cd Flask-ToDo-App\n   ```\n\n3. **Create a Virtual Environment**: It's recommended to use a virtual environment to isolate project dependencies. You can create a virtual environment using `virtualenv` or `venv`:\n\n   ```bash\n   virtualenv venv\n   ```\n\n   or\n\n   ```bash\n   python3 -m venv venv\n   ```\n\n4. **Activate the Virtual Environment**: Activate the virtual environment:\n\n   On macOS/Linux:\n   ```bash\n   source venv/bin/activate\n   ```\n\n   On Windows:\n   ```bash\n   venv\\Scripts\\activate\n   ```\n\n5. **Install Dependencies**: Install the project dependencies using pip:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n6. **Set Up the Database**: Configure the database settings in `config.py` and run migrations to set up the database schema:\n\n   ```bash\n   flask db init\n   flask db migrate -m \"Initial migration\"\n   flask db upgrade\n   ```\n\n7. **Run the Application**: Start the Flask development server:\n\n   ```bash\n   flask run\n   ```\n\n   The application will be accessible at `http://localhost:5000` by default.\n\n## Usage\n\nThe Flask CRUD application provides the following functionality:\n\n- **Create**: Users can add new records to the database using a web form.\n- **Read**: Users can view existing records in the database.\n- **Update**: Users can edit and update existing records.\n- **Delete**: Users can delete records from the database.\n\n## Project Structure\n\nThe project structure is organized as follows:\n\n- **app/**\n  - Contains the main application code.\n  - **templates/**: HTML templates for rendering web pages.\n  - **static/**: Static files such as CSS stylesheets, JavaScript files, and images.\n  - **models.py**: Defines database models using SQLAlchemy.\n  - **routes.py**: Defines application routes and request handling logic.\n- **migrations/**: Contains database migration scripts generated by Flask-Migrate.\n- **config.py**: Configuration settings for the Flask application.\n- **requirements.txt**: List of project dependencies.\n\n## Dependencies\n\nThe Flask CRUD application uses the following main dependencies:\n\n- Flask: Web framework for building web applications in Python.\n- SQLAlchemy: SQL toolkit and Object-Relational Mapping (ORM) library.\n- Flask-Migrate: Extension for handling database migrations with Flask.\n\n## Contributing\n\nContributions to the Flask CRUD application are welcome! If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for more information.\n\n## Author\n\n[Sandeep Pal]\n\n---\nFeel free to customize this README file according to your project's specific requirements and features.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpal-sandeep%2Fflask-todo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpal-sandeep%2Fflask-todo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpal-sandeep%2Fflask-todo-app/lists"}