Skip to content

Getting started

Kenza Boulisfane edited this page Feb 3, 2020 · 3 revisions

Welcome to the GuideMe wiki!

Install Node

$ brew install node or directly from the node website.

Install Expo

npm install -g expo-cli

Initial Environment Setup

$ cd directory/of/git/repo
$ npm init # follow instructions
$ npm install
$ expo start

The project can be found at http://localhost:19002/

Running the Project Locally

$ cd into/git/repo/
$ expo start

Directory Structure of GuideMe

.
├── App.js
├── babel.config.js
├── app.json
├── package.json
├── package-lock.json
├── assets
│   ├── icon.png
│   ├── splash.png
├── components
│   ├── Buildings.js
│   └── ToggleCampus.js
├── constants
    ├── BuildingCoordinates.js
├── node modules
├── routes
│   └── routeStack.js
├── screens
│   └── Map.js

Clone this wiki locally