浏览代码

Updating readme

David Leonard 10 年之前
父节点
当前提交
9e327255b5
共有 2 个文件被更改,包括 10 次插入16 次删除
  1. 0 14
      .hgignore
  2. 10 2
      README.md

+ 0 - 14
.hgignore

@@ -1,14 +0,0 @@
-syntax: glob
-
-.DS_Store
-db.sqlite3
-*.pyc
-bower_components/
-migrations/
-Thumbs.db
-*/vendor
-ionic/platforms
-hackathon_starter/_build
-hackathon_starter/_static
-hackathon_starter/_templates
-.coverage

+ 10 - 2
README.md

@@ -23,6 +23,7 @@ Table of Contents
 -----------------
 
 - [Features](#features)
+- [Pre-requisites](#pre-requisites)
 - [Getting Started](#getting-started)
 - [Obtaining API Keys](#getting-api-keys)
 - [License](#license)
@@ -51,6 +52,13 @@ Features
 <hr>
 
 
+Pre-requisites
+--------------
+
+This project relies on `bower` for front-end dependencies, which in turn requires [npm](https://www.npmjs.com/). `npm` is now bundled with `NodeJS`, which you can download and install [here](https://nodejs.org/download/).
+
+For Python-specific libraries, this project relies on [pip](https://pypi.python.org/pypi/pip). The easiest way to install `pip` can be [found here](https://pip.pypa.io/en/latest/installing.html).
+
 Getting Started
 ---------------
 To get up and running, simply do the following:
@@ -64,13 +72,13 @@ To get up and running, simply do the following:
     # Install bower
     $ npm install -g bower
     $ bower install
-    $ mv bower_components/ hackathon_starter/hackathon/static
     
     # Perform database migrations
     $ python manage.py makemigrations
     $ python manage.py migrate
 
-**NOTE**: We highly recommend creating a [Virtual Environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/). Python Virtual Environments allow developers to work in isolated sandboxes and to create separation between python packages installed via pip.
+
+**NOTE**: We highly recommend creating a [Virtual Environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/). Python Virtual Environments allow developers to work in isolated sandboxes and to create separation between python packages installed via [pip](https://pypi.python.org/pypi/pip).
 
 **NOTE**: To get you up and running quickly, we have provided dummy API keys for use. We highly recommend setting up your own keys and replacing them within `settings.py`.