Skip to content

Commit

Permalink
Update quickstart.md (feast-dev#4598)
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscojavierarceo authored Oct 3, 2024
1 parent 1ba94f7 commit cc41c9e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,12 @@ We now serialize the latest values of features since the beginning of time to pr
{% tab title="Bash" %}
```bash
CURRENT_TIME=$(date -u +"%Y-%m-%dT%H:%M:%S")
feast materialize-incremental $CURRENT_TIME
# For mac
LAST_YEAR=$(date -u -v -1y +"%Y-%m-%dT%H:%M:%S")
# For Linux
# LAST_YEAR=$(date -u -d "last year" +"%Y-%m-%dT%H:%M:%S")

feast materialize-incremental $LAST_YEAR $CURRENT_TIME
```
{% endtab %}
{% endtabs %}
Expand Down

0 comments on commit cc41c9e

Please sign in to comment.