blob: 042551b82837f39604d9faa3944197bb7fa2ea77 [file] [log] [blame] [view]
Tyler Scott08263852015-07-31 19:05:52 -06001NDN Catalog (NDN Query and Retrieval Tool)
2==========================================
3
4This is the front end to the catalog which contains all of the client html and code.
5
6Setup
7-----
8
9To simply run the client code, you will need the following things setup:
10
11* A NDN backend running somewhere (The default config is pointed at a test backend)
12* NDN-JS
13 + Run `git submodule init ndn-js` in the client directory.
14 + Then run `git submodule update`
15* Configure the config.json
16 + If it doesn't exist, you will need to copy it from the config-example.json
17 + config.json is intentionally left out of the git to prevent overwriting it.
18
Tyler Scott9eb6abd2015-08-04 14:48:23 -060019config.json
20-----------
21
22catalogPrefix - This is where you are doing your catalog queries. This should be the root of where we are querying in ndn.
23
24faceConfig - Configure where you have your backend running and on which port it is listening. To setup a new backend, please read the readme at the root of the repo.
25
26
27Changing the theme
28------------------
29
30Currently the theme is a modified bootstrap theme that is running larger fonts and custom colors.
31
32If you would like to modify the theme go to [this url](http://bootstrap-live-customizer.com/). To modify the current theme, then upload the variables.less in this folder, make your modifications, and overwrite the variables.less file when you are done (and the theme.min.css).
33
34
35