{"id":22436823,"url":"https://github.com/make-school-labs/trip-planner","last_synced_at":"2025-10-30T02:42:52.917Z","repository":{"id":100733425,"uuid":"105816180","full_name":"Make-School-Labs/trip-planner","owner":"Make-School-Labs","description":"Starter project for trip planner Flask app","archived":false,"fork":false,"pushed_at":"2017-10-04T20:53:50.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-08T01:51:14.227Z","etag":null,"topics":["flask","flask-restful","mongodb","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","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/Make-School-Labs.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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-04T20:40:51.000Z","updated_at":"2020-04-02T15:48:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"a728ecf1-0569-4f9c-9f16-6171aef991b7","html_url":"https://github.com/Make-School-Labs/trip-planner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Make-School-Labs/trip-planner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Make-School-Labs%2Ftrip-planner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Make-School-Labs%2Ftrip-planner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Make-School-Labs%2Ftrip-planner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Make-School-Labs%2Ftrip-planner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Make-School-Labs","download_url":"https://codeload.github.com/Make-School-Labs/trip-planner/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Make-School-Labs%2Ftrip-planner/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266973183,"owners_count":24014633,"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","status":"online","status_checked_at":"2025-07-25T02:00:09.625Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["flask","flask-restful","mongodb","python"],"created_at":"2024-12-06T00:09:27.146Z","updated_at":"2025-10-30T02:42:47.872Z","avatar_url":"https://github.com/Make-School-Labs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project - Travel App API Project Spec\n\n\n## Overview\n\nWe will be building a trip planning app that stores a list of trips for a user.\nThe goal of this project is for you to practice everything you have learnt about building an API.\n\nUsers can create a trip, add waypoints to a trip (a list of stops a user will take in a trip) and mark a trip as completed.\n\n### The API\n\nYour API should contain/use:\n\n1. a non-relational database to store all our trips.(mongodb)\n2. a trips resource - you should be able to create, list, show, update and destroy trips.\n3. completed trips are marked as completed.\n4. unit tests for all routes.\n\n## Client\n\nWhen you are done with the Flask API, write an iOS client to connect and display the list of trips.\nAuthenticate the user, display trips and a detail of the trip with waypoints and completed status of each trip.\n\n\n### Routes and Actions\n\nCreate unit tests for and then implement the following new resources and routes:\n\n### ***Users***\n\n| Action  | HTTP Verb | Path             | Effect                           |\n|---------|-----------|------------------|----------------------------------|\n| create  | POST      | /user           | Creates a new user               |\n| index   |           |                 |                                  |\n| show    | GET       | /user           | Shows a specific user            |\n| update  | PUT/PATCH | /user           | Updates/replaces a specific user |\n| destroy | DELETE    | /user           | Deletes a specific user          |\n\n\n### ***Trips***\n\n| Action  \t| HTTP Verb \t| Path             \t| Effect                           \t|\n|---------\t|-----------\t|------------------\t|----------------------------------\t|\n| create  \t| POST      \t| /trips           \t| Creates a new trip               \t|\n| index   \t| GET       \t| /trips           \t| Shows/lists all trips            \t|\n| show    \t| GET       \t| /trips/\u003ctrip_id\u003e \t| Shows a specific trip            \t|\n| update  \t| PUT/PATCH \t| /trips/\u003ctrip_id\u003e \t| Updates/replaces a specific trip \t|\n| destroy \t| DELETE    \t| /trips/\u003ctrip_id\u003e \t| Deletes a specific trip          \t|\n\n\n## Project Milestones\n\nBackend:\n\n- [x] User - Create/Update a user - post request\n- [x] User - Get a user with a get request\n\n- [x] Trips - Create a trip\n- [x] Trips - Update a trip with completed status\n- [x] Trips - Add waypoints to a trip (a list of named stops in a trip)\n\n- [x] User - Sign up a user, hash the password\n- [x] User - Sign in a user, check password with hash in database\n\niOS Client:\n\n- [x] Authenticates user with HTTP Basic Auth\n- [x] Display list of trips, trip waypoints and completed status of each trip\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmake-school-labs%2Ftrip-planner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmake-school-labs%2Ftrip-planner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmake-school-labs%2Ftrip-planner/lists"}