Flakes search: Include flake name (#499)
This commit is contained in:
parent
fd53fda132
commit
0453790a74
|
@ -41,7 +41,7 @@ better queries which in turn will produce better results.
|
|||
To start developing open a terminal and run:
|
||||
|
||||
```
|
||||
nix-shell --run "cd frontend && yarn dev"
|
||||
env --chdir=frontend nix develop -c yarn dev
|
||||
```
|
||||
|
||||
You can point your browser to `http://localhost:3000` and start developing.
|
||||
|
|
|
@ -402,6 +402,7 @@ makeRequestBody query from size sort =
|
|||
[ ( "option_name", 6.0 )
|
||||
, ( "option_name_query", 3.0 )
|
||||
, ( "option_description", 1.0 )
|
||||
, ( "flake_name", 0.5 )
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -807,6 +807,7 @@ makeRequestBody query from size maybeBuckets sort =
|
|||
, ( "package_attr_name_query", 4.0 )
|
||||
, ( "package_description", 1.3 )
|
||||
, ( "package_longDescription", 1.0 )
|
||||
, ( "flake_name", 0.5 )
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue