Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reference to templates.js #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<script>try{Typekit.load();}catch(e){}</script>
<script src="/assets/js/foundation.js"></script>
<script src="/assets/js/routes.js"></script>
<script src="/assets/js/templates.js"></script>
<script src="/assets/js/app.js"></script>
</head>
<body>
Expand Down
49 changes: 0 additions & 49 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,50 +1 @@
# Star Wars Compendium using Foundation for Apps

This is a single-page app using for Foundation for Apps and a RESTful Star Wars API. It's powered by Node, Gulp, Angular, and libsass.

## Requirements

You'll need the following software installed to get started.

* [Node.js](http://nodejs.org): Use the installer provided on the NodeJS website.
* [Git](http://git-scm.com/downloads): Use the installer for your OS.
* Windows users can also try [Git for Windows](http://git-for-windows.github.io/).
* [Ruby](https://www.ruby-lang.org/en/): Use the installer for your OS. For Windows users, [JRuby](http://jruby.org/) is a popular alternative.
* With Ruby installed, run `gem install bundler sass`.
* [Gulp](http://gulpjs.com/) and [Bower](http://bower.io): Run `[sudo] npm install -g gulp bower`

## Get Started

Clone this repository, where `app` is the name of your app.

```bash
git clone https://github.com/spsaucier/ffa_sw.git app
```

Change into the directory.

```bash
cd app
```

Install the dependencies. Running `npm install` will also automatically run `bower install` after. If you're running Mac OS or Linux, you may need to run `sudo npm install` instead, depending on how your machine is configured. Running `bundle` will install the correct version of Sass for the template.

```bash
npm install
bower install
bundle
```

While you're working on your project, run:

```bash
npm start
```

This will compile the Sass and assemble your Angular app. **Now go to `localhost:8080` in your browser to see it in action.**

To run the compiling process once, without watching any files:

```bash
npm start build
```# ffa_sw