{"id":31632837,"url":"https://github.com/smallcase/gw-mob","last_synced_at":"2026-02-17T01:02:49.890Z","repository":{"id":286415855,"uuid":"769027753","full_name":"smallcase/gw-mob","owner":"smallcase","description":"This repository is the primary space for documentation regarding all gateway SDKs.","archived":false,"fork":false,"pushed_at":"2025-10-17T10:53:22.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-02-07T16:56:51.375Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developers.gateway.smallcase.com/","language":null,"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/smallcase.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-08T07:36:41.000Z","updated_at":"2025-10-17T10:53:26.000Z","dependencies_parsed_at":"2025-10-18T01:33:51.187Z","dependency_job_id":"9c257ad1-b004-4d79-a180-b5634c997e5e","html_url":"https://github.com/smallcase/gw-mob","commit_stats":null,"previous_names":["smallcase/gw-issues","smallcase/gw-mob"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/smallcase/gw-mob","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallcase%2Fgw-mob","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallcase%2Fgw-mob/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallcase%2Fgw-mob/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallcase%2Fgw-mob/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smallcase","download_url":"https://codeload.github.com/smallcase/gw-mob/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallcase%2Fgw-mob/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29528249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T00:57:22.232Z","status":"ssl_error","status_checked_at":"2026-02-17T00:54:25.811Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2025-10-06T23:30:31.587Z","updated_at":"2026-02-17T01:02:49.510Z","avatar_url":"https://github.com/smallcase.png","language":null,"readme":"\n# System setup.sh 🐚\n\n### Prerequisites\n\n\u003e [!NOTE]\n\u003e 1. You need to install Xcode from the App Store or https://xcodereleases.com/ first\n\u003e 2. Install Docker from the official website (homebrew does not install the arm version by default) **(Optional)**\n\n### Installation script\n\n\u003e [!CAUTION]\n\u003e Don’t forget to change `\u003cyour_username\u003e` to your actual username on your mac.\n\u003e \n\u003e To find this run:\n\u003e ```bash\n\u003e cd ~ \u0026\u0026 pwd\n\u003e ```\n\nAfter you’ve substituted with your specific path, just run the below script\n\n```bash\nUSER_DIR=/Users/indrajitroy\n# Create the .zprofile \u0026 .zshrc files\necho \u003e\u003e $USER_DIR/.zprofile\necho \u003e\u003e $USER_DIR/.zshrc\n\n# Install Xcode from App Store or `https://xcodereleases.com/` !!!\n# Install Docker from the official website (homebrew does not install the arm version by default)\n\n# Install homebrew\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n## Add homebrew shellenv evalutaion to the top of the .zprofile\n## This will help homebrew setup the $PATH before the shell starts\necho 'eval \"$(/opt/homebrew/bin/brew shellenv)\"' \u003e\u003e $USER_DIR/.zprofile\n## Run this to get the homebrew packages available in the current terminal session\neval \"$(/opt/homebrew/bin/brew shellenv)\"\n\n# Install ruby\nbrew install ruby\necho 'export PATH=\"/opt/homebrew/opt/ruby/bin:$PATH\"' \u003e\u003e ~/.zshrc\necho 'export GEM_HOME=$HOME/.gem' \u003e\u003e ~/.zshrc\necho 'export PATH=$GEM_HOME/bin:$PATH' \u003e\u003e ~/.zshrc\n# If xcode command line tools fails during pos install, run\n# sudo xcode-select --reset\n\n# To manage different ruby versions\nbrew install rbenv\n\n# To manage different flutter versions\nbrew tap leoafarias/fvm\nbrew install fvm\nfvm install stable\nfvm global stable\nfvm flutter doctor\n\n# Install VSCode\nbrew install --cask visual-studio-code\n# Install Cursor\nbrew install --cask cursor\n# Install MongoDB Compass\nbrew install --cask mongodb-compass\n# Install Pritunl\nbrew install --cask pritunl\n\n# Install JetBrains Toolbox\nbrew install --cask jetbrains-toolbox\n## Set JetBrains' toolbox scripts in PATH\necho 'export PATH=\"$HOME/Library/Application Support/JetBrains/Toolbox/scripts:$PATH\"' \u003e\u003e $USER_DIR/.zshrc\n\n## Install the latest Android Studio from the toolbox and install the JBR Java version 11 || 17\n## Set JAVA_HOME from JetBrains runtime (make sure to install the `jbr-17.0.14` version from Android Studio)\necho 'export JAVA_HOME=\"$HOME/Library/Java/JavaVirtualMachines/jbr-17.0.14/Contents/Home\"' \u003e\u003e $USER_DIR/.zshrc\n\n## Set Android related env PATHS\necho 'export ANDROID_HOME=\"$HOME/Library/Android/sdk\"' \u003e\u003e $USER_DIR/.zshrc\necho 'export PATH=\"$PATH:$ANDROID_HOME/platform-tools\"' \u003e\u003e $USER_DIR/.zshrc\necho 'export PATH=\"$PATH:$ANDROID_HOME/tools\"' \u003e\u003e $USER_DIR/.zshrc\necho 'export PATH=\"$PATH:$ANDROID_HOME/tools/bin\"' \u003e\u003e $USER_DIR/.zshrc\necho 'export PATH=\"$PATH:$ANDROID_HOME/emulator\"' \u003e\u003e $USER_DIR/.zshrc\n\n# Install Volta\nbrew install volta\n## Set Volta bin in PATH\necho 'export PATH=\"$HOME/.volta/bin:$PATH\"' \u003e\u003e $USER_DIR/.zshrc\n\n# Install Go\nbrew install go\n## Set GOPATH and add go installations to bin\nexport GOPATH=\"$HOME/go\"\nexport PATH=\"$PATH:$GOPATH/bin\"\n```\n\n\u003e [!NOTE]\n\u003e When changing the location of the above setup, please remember to update the [master doc](https://docs.google.com/document/d/1RH1MY--qGnjWJUDGOk4roouI2Si2U9dcbmA4wWa08UY/edit?tab=t.tdacod3gtocz#heading=h.nmgq5tlz1i6w).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmallcase%2Fgw-mob","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmallcase%2Fgw-mob","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmallcase%2Fgw-mob/lists"}