Team communication in one home.
Connect with team members across multiple message boards and update each other in an instant.
- Team Dashboard
- Message Boards
- Activity Timeline
- User Settings
- Team Detail Page
- iOS 12.1+
- Xcode 10.1
- Cocoapods
Xcode is the IDE of choice for most iOS developers, and the only one officially supported by Apple. To install, simply download Xcode on the Mac App Store.
Don't open any Xcode project or workspace files yet. You will need to install the project's external dependencies first.
This project uses CocoaPods to handles all external dependencies (e.g. third-party libraries or frameworks).
To install Cocoapods, open your terminal and enter the following code:
sudo gem install cocoapods
From the root directory of the project, enter the following commands to install the Podfile:
cd ios/TeamHome
pod install
Note that from now on, you'll need to open the .xcworkspace file instead of .xcproject, or the project's code will not compile.
If you open the project now there will be errors for apollo cli so you will need to install node if you don't have it already.
To install node through Homebrew, enter the following into your terminal:
brew install node
After node is installed, you will need to add the apollo tooling. To do so, enter the following into your terminal:
npm install -g apollo
Now you can run the Xcode workspace file without any errors.
The projects files are organized into folders in the Xcode project, the following is the file structure from the Team Home folder inside the project.
├─ Team Home (including API.swift and schema.json files)
├─ Helper (date formatter and Appearance file)
├─ Models
├───── Mock json
├─ Resources (including plists, fonts and App Delegate)
├───── Image Assets
├─ View Controllers and GraphQL files
├─ Storyboards
Reminder: Keep the API.swift and schema.json files in the Team Home folder and outside of any other folders. Otherwise, you will need to update the build phase code for "Generate Apollo GraphQL API".
Xcode is the IDE of choice for most iOS developers, and the only one officially supported by Apple. It comes with the newest SDK and simulators, and you can install frameworks and libraries easily to enhance your iOS application.
This project uses CocoaPods to handles all external dependencies (e.g. third-party libraries or frameworks). It's easy to install and hundreds of third-party frameworks and libraries are available to install through Cocoapods
Apollo is a GraphQL client for native iOS apps. It allows you to execute queries and mutations against a GraphQL server (which the backend uses) and returns results as Swift types. There is no need to parse JSON manually.
Auth0 provides authentication and authorization as a service for web and mobile applications. Auth0 SDK is a client-side Swift library for Auth0.
Cloudinary is a cloud-based image management solution for developers. The Cloudinary iOS SDK provides the ability to manage images seamlessly in the iOS application. This includes the abilities to upload images to the server, manipulate images and download images from the server.
Material is a UI/UX framework for creating a cohesive styling throughout an iOS application. Material's animation system also incorporates Motion, a library dedicated to animations and transitions.
Toucan is a Swift library that is designed for processing images. This includes resizing, cropping and styling images while being able to chain those image processing stages.
Distributed under the MIT license.


