{"id":17593741,"url":"https://github.com/rtarun3606k/walkez","last_synced_at":"2025-04-30T06:48:18.646Z","repository":{"id":257186603,"uuid":"857315781","full_name":"Rtarun3606k/Walkez","owner":"Rtarun3606k","description":"\"A community-driven platform for efficient complaint tracking and resolution, integrating real-time updates, user engagement, and data analytics to improve accountability and impact.\"","archived":false,"fork":false,"pushed_at":"2025-04-01T06:04:33.000Z","size":11848,"stargazers_count":6,"open_issues_count":11,"forks_count":29,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T06:47:54.443Z","etag":null,"topics":["azure","css","docker","flask","hacktoberfest","hacktoberfest-accepted","hacktoberfest2024","html5","js","mongodb","psql","pymongo","python","react","sqlalchemy","swoc","swoc2025","swoc25","yolov5"],"latest_commit_sha":null,"homepage":"https://walkez.publicvm.com","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/Rtarun3606k.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"Rtarun3606k"}},"created_at":"2024-09-14T10:26:47.000Z","updated_at":"2025-04-01T06:04:36.000Z","dependencies_parsed_at":"2024-09-15T07:44:55.259Z","dependency_job_id":"56bda267-508f-4007-84a1-e49c1de86799","html_url":"https://github.com/Rtarun3606k/Walkez","commit_stats":null,"previous_names":["rtarun3606k/start-up","rtarun3606k/walkez"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rtarun3606k%2FWalkez","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rtarun3606k%2FWalkez/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rtarun3606k%2FWalkez/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rtarun3606k%2FWalkez/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rtarun3606k","download_url":"https://codeload.github.com/Rtarun3606k/Walkez/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251658197,"owners_count":21622819,"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":["azure","css","docker","flask","hacktoberfest","hacktoberfest-accepted","hacktoberfest2024","html5","js","mongodb","psql","pymongo","python","react","sqlalchemy","swoc","swoc2025","swoc25","yolov5"],"created_at":"2024-10-22T06:12:56.551Z","updated_at":"2025-04-30T06:48:18.613Z","avatar_url":"https://github.com/Rtarun3606k.png","language":"JavaScript","funding_links":["https://github.com/sponsors/Rtarun3606k"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch1 align=\"center\"\u003e WALKEZ \u003c/h1\u003e\n\u003c/p\u003e\n\u003cbr\u003e\n\n\nWalkez is a community-driven platform for efficient complaint tracking and resolution, integrating real-time updates, user engagement, and data analytics to improve accountability and impact.\n\n## Overview\n\nThis project is built using [React](https://reactjs.org/) and [Vite](https://vitejs.dev/). Vite is a fast build tool that serves your code through a local server and provides hot module replacement.\n\n## Table of Content\n- [Frontend](#frontend)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n  - [Running the Development Server](#running-the-development-server)\n  - [Building for Production](#building-for-production)\n  - [Linting](#linting)\n  - [Formatting](#formatting)\n  - [Docker Setup](#docker-setup)\n- [Backend - Flask Application](#backend---flask-application)\n  - [Prerequisites](#prerequisites-1)\n  - [Installation](#installation-1)\n  - [Running the Application](#running-the-application)\n- [Learn More](#learn-more)\n- [License](#license)\n-----------------------------\n## Frontend\n\n### Prerequisites\n\nEnsure you have the following installed:\n- Node.js (version 14.0.0 or higher recommended)\n- npm (version 6.0.0 or higher recommended) or yarn\n\n### Installation\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/Rtarun3606k/Walkez.git\n    cd Walkez\n    cd frontend\n    ```\n\n2. Install dependencies:\n    ```bash\n    npm install\n    # or\n    yarn install\n    ```\n\n### Running the Development Server\n\nTo start the development server, run:\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nThe app will be available at [http://localhost:3000](http://localhost:3000).\n\n### Building for Production\n\nTo create a production build, run:\n```bash\nnpm run build\n# or\nyarn build\n```\n\nThe build artifacts will be stored in the `dist` directory.\n\n### Linting \n\nTo lint the code, run:\n```bash\nnpm run lint\n# or\nyarn lint\n```\n\n### Formatting\n\nTo format the code, run:\n```bash\nnpm run format\n# or\nyarn format\n```\n\n### Docker Setup\nTo run the docker for the project (only frontend)\n\n1. First change the directory to the `frontend`\n\n```\n cd frontend\n```\n2. Build the docker image:\n```\n  docker build -t walkez-image:1.0  .\n```\n3. Run the container:\n\n```\n  docker run -d -p 3000:80 --name walkez-app  walkez-image:1.0\n```\n\n\n--------------------------\n## Backend - Flask Application\n\n### Prerequisites\n\nEnsure you have the following installed:\n- Python (version 3.6 or higher)\n\n### Installation\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/Rtarun3606k/Walkez.git\n    cd Walkez\n    cd backend\n    ```\n\n2. Create a virtual environment:\n    ```bash\n    python -m venv venv\n    ```\n\n3. Activate the virtual environment:\n    - On Windows:\n      ```bash\n      venv\\Scripts\\activate\n      ```\n    - On Unix or MacOS:\n      ```bash\n      source venv/bin/activate\n      ```\n\n4. Install dependencies:\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n### Running the Application\n\nTo start the application, run:\n```bash\npython wsgi.py\n```\n\nThe app will be available at [http://localhost:5000](http://localhost:5000).\n\n------------------\n\n## Learn More\nTo learn more about Flask, React and Vite take a look at the following resources:\n- [Flask Documentation](https://flask.palletsprojects.com/)\n- [React Documentation](https://reactjs.org/)\n- [Vite Documentation](https://vitejs.dev/)\n\n----------------\n \n ## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtarun3606k%2Fwalkez","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtarun3606k%2Fwalkez","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtarun3606k%2Fwalkez/lists"}