-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,43 @@ | ||
# UCI-Directory | ||
|
||
Demo app used in iOS Workshop on Nov 6, 2015 | ||
Demo app used in iOS Workshop on Nov 6, 2015 by Edward Xia. | ||
|
||
# Download | ||
|
||
``` sh | ||
git clone --recursive https://github.com/ICSSC/UCI-Directory.git | ||
``` | ||
|
||
If you forget "--recursive": | ||
|
||
``` sh | ||
git submodule sync | ||
git submodule update --init | ||
``` | ||
|
||
# Install Dependencies | ||
|
||
NodeJS is required for the server app. | ||
|
||
``` sh | ||
cd Server | ||
npm install | ||
npm install coffee-script -g | ||
``` | ||
|
||
# Start Server | ||
|
||
``` sh | ||
cd Server | ||
coffee server.coffee | ||
``` | ||
|
||
Note: server requires on campus network or UCI VPN. | ||
|
||
# Build and Run the app | ||
|
||
Open "UCI Directory.xcodeproj" and build. | ||
|
||
# Play! | ||
|
||
This app is build in a single afternoon, so code may be hacky. |