Skip to content

Commit

Permalink
Readme updates
Browse files Browse the repository at this point in the history
Related to #105
  • Loading branch information
onejgordon committed May 26, 2018
1 parent 6ceac49 commit a406e20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ To avoid conflicts sometimes seen with gcloud and google.cloud python libs it is
* `cd scripts`
* `./server.sh`

Make sure dev_appserver.py is in your path, and run `./scripts/server.sh` to start the dev server locally, and `gulp` in another terminal to build JS etc.
Make sure dev_appserver.py is in your path, and run `server.sh` (in scripts/) to start the dev server locally.
Then run `gulp` in another terminal to build JS etc.

Visit localhost:8080 to run the app, and localhost:8000 to view the local dev server console.

Expand Down
4 changes: 2 additions & 2 deletions scripts/server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ if [ "$1" == "kill" ]; then
lsof -P | grep ':8080' | awk '{print $2}' | xargs kill -9
elif [ "$1" == "clean" ]; then
echo "Starting server (cleaning db)..."
dev_appserver.py app.yaml --log_level=debug --clear_datastore=yes
dev_appserver.py app.yaml --log_level=debug --clear_datastore=yes --enable_host_checking
else
echo "Starting server..."
dev_appserver.py app.yaml --log_level=debug
dev_appserver.py app.yaml --log_level=debug --enable_host_checking
fi
1 change: 1 addition & 0 deletions src/js/components/TaskWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ class TaskWidget extends React.Component {

dismiss_task_dialog() {
TaskActions.closeTaskDialog()
this.setState({form: {}})
}

project_input_update(searchText) {
Expand Down

0 comments on commit a406e20

Please sign in to comment.