forked from ICMLRecommender/frontend
-
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
23 additions
and
13 deletions.
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 |
---|---|---|
|
@@ -3,19 +3,7 @@ ICML 2017 website Frontend project repository | |
|
||
Website, detailing the app design: | ||
http://icml2017spec.s3-website-us-west-2.amazonaws.com | ||
|
||
# To setup the front end: | ||
|
||
- Install Polymer, v1, not v2 | ||
- Download the code for the frontend from github | ||
- Open terminal and enter | ||
|
||
``` | ||
bower install | ||
``` | ||
which would install the needed bower components | ||
To start the server: | ||
# To start the server | ||
|
||
1. | ||
``` | ||
|
@@ -33,3 +21,25 @@ cp settings.py.no_https settings.py | |
cd /home/icmlapp/backend/server/icml | ||
/home/icmlapp/env/bin/python manage.py runserver | ||
``` | ||
|
||
# To setup the front end | ||
|
||
- Install Polymer v1 (not v2) | ||
|
||
``` | ||
sudo npm install -g [email protected] | ||
``` | ||
|
||
- Download the code for the frontend from github | ||
- Open terminal and enter | ||
|
||
``` | ||
bower install | ||
``` | ||
which would install the needed bower components | ||
- Serve the frontend | ||
``` | ||
polymer serve | ||
``` |