Skip to content
Open
Changes from 2 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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ To monitor your source directory for changes, and recompile files if they change
python build.py & python -m SimpleHTTPServer && fg
```

For Python 3.6.0 :
```
python build.py & python -m http.server && fg

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should work for all versions > 3.3

Its better to mention that, 3.6 was released recently, but this should work with relatively newer python 3 versions

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SanketDG in the above comments @realslimshanky said it was not working for him for version 3.5.2, it would be great if you could update me and I can make the necessary changes. :)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for the late response, but the above code should work for any versions > 3.3 since there have been no breaking changes after that.

So you can go ahead and change that

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SanketDG Done

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be great if you could merge it
:)

```

This will recursively search `./templates` for templates (any file whose name does not start with `.` or `_`) and build them to `.`.

Commit both the rendered html and the file inside `/templates/`
Expand Down