{"id":19782820,"url":"https://github.com/tyronejosee/project_coding_latam_api","last_synced_at":"2026-05-13T15:42:51.701Z","repository":{"id":254316841,"uuid":"846149972","full_name":"tyronejosee/project_coding_latam_api","owner":"tyronejosee","description":"A JSON API created for the Coding Latam community","archived":false,"fork":false,"pushed_at":"2024-08-31T17:44:27.000Z","size":583,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T13:05:33.945Z","etag":null,"topics":["fastapi","python","railway","render","starlette","uvicorn"],"latest_commit_sha":null,"homepage":"https://coding-latam-api.up.railway.app/docs","language":"Python","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/tyronejosee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-08-22T16:17:45.000Z","updated_at":"2024-11-12T22:32:27.000Z","dependencies_parsed_at":"2024-08-22T19:23:42.191Z","dependency_job_id":"fd1af942-b725-42d2-a5c8-37572590622a","html_url":"https://github.com/tyronejosee/project_coding_latam_api","commit_stats":null,"previous_names":["tyronejosee/project_coding_latam_api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tyronejosee/project_coding_latam_api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyronejosee%2Fproject_coding_latam_api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyronejosee%2Fproject_coding_latam_api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyronejosee%2Fproject_coding_latam_api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyronejosee%2Fproject_coding_latam_api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tyronejosee","download_url":"https://codeload.github.com/tyronejosee/project_coding_latam_api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyronejosee%2Fproject_coding_latam_api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32989871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"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":["fastapi","python","railway","render","starlette","uvicorn"],"created_at":"2024-11-12T06:06:14.431Z","updated_at":"2026-05-13T15:42:51.669Z","avatar_url":"https://github.com/tyronejosee.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Coding Latam API\n\nThe JSON used as the database is located in [`app/data/db.py`](https://github.com/tyronejosee/project_coding_latam_api/blob/main/app/data/db.py)\n\n## Requirements\n\n- Python 3.8+\n\n## Installation\n\nClone the repository and navigate to the project directory:\n\n```bash\ngit clone git@github.com:tyronejosee/project_coding_latam_api.git\n```\n\n### Virtual Environment Setup\n\nIt is recommended to create a virtual environment to isolate all the project dependencies:\n\n```bash\n# Linux\npython3 -m venv env\n\n# Windows\npython -m venv env\n```\n\nActivate the virtual environment:\n\n```bash\n# Linux\nsource venv/bin/activate\n\n# Windows\nvenv\\Scripts\\activate\n```\n\n### Installing Dependencies\n\nYou can install the dependencies using `pip` or `Poetry`.\n\n#### pip\n\n```bash\npip install -r requirements.txt\n```\n\n#### Poetry\n\n```bash\npoetry install\n```\n\nCreate a copy of the `.env.example` file and rename it to `.env`.\n\n```bash\ncp .env.example .env\n```\n\n**Update the values of the environment variables (Important).**\n\n## Running the Application\n\nTo run the application in development mode, use:\n\n```bash\nuvicorn app.main:app --reload\n```\n\nThis will start the server at `http://127.0.0.1:8000`.\n\n### API Documentation\n\nOnce the application is running, you can access the interactive documentation at:\n\n- Swagger UI: `http://127.0.0.1:8000/docs`\n- Redoc: `http://127.0.0.1:8000/redoc`\n\n## Deploy\n\n### Example with Railway\n\nLog in or sign up at [railway.app](https://railway.app/).\n\nSelect New on your dashboard and Deploy from GitHub repo:\n\n![Example-01](/app/static/images/examples/01.png)\n\nConfigure and grant permission to the specific repositories for deployment:\n\n![Example-02](/app/static/images/examples/02.png)\n![Example-03](/app/static/images/examples/03.png)\n\nGo to the Settings tab of the instance.\n\n![Example-04](/app/static/images/examples/04.png)\n\nAdd the command `pip install -r requirements.txt` in the `Custom Build Command` field:\n\n![Example-05](/app/static/images/examples/05.png)\n\nAdd the command `uvicorn app.main:app --host 0.0.0.0 --port $PORT` in the `Custom Start Command` field:\n\n![Example-06](/app/static/images/examples/06.png)\n\nAfter completing the Railway process, click on `Generate Domain` within `Settings`:\n\n![Example-07](/app/static/images/examples/07.png)\n\nAnd your API will be deployed successfully. 🎉🎉\n\n![Example-08](/app/static/images/examples/08.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyronejosee%2Fproject_coding_latam_api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftyronejosee%2Fproject_coding_latam_api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyronejosee%2Fproject_coding_latam_api/lists"}