Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unanswered
Building a Fift file results in an environment variable error.

I'm getting the following error when compiling Fift. I'm using this command:

./ton-build/crypto/fift counter.fif

Fift path error

I followed this tutorial, but when I run func or fift I get

Command 'func' not found, did you mean....


This question was imported from Telegram Chat:https://t.me/tondev_eng/10317

  
  
Posted one year ago
  
  

It is likely that you do not have a proper environment variable set up. The FIFTPATH environment variable needs to be fixed so that it relates to the fift executable

Jeremy   one year ago Report
Votes Newest

Answers