You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,10 @@ Since this repository has submodule, when you clone it, please use `git clone --
7
7
* Make sure you have ``homebrew`` and python 3.6 or above installed
8
8
* Install PostgreSQL with ``brew install postgresql``
9
9
* Start the PostgreSQL server with ``brew services start postgresql``
10
-
* Set up environment variables with: ``cat env.txt >> ~/.bash_profile`` and ``source ~/.bash_profile`` (NOTE: If you use PyCharm or other IDE, please restart the IDE for the environmental settings to work!)
11
10
* Start a virtual environment with ``python3 -m venv venv``
* Set up environment variables with: ``cat env.txt >> ~/.bash_profile`` and ``source ~/.bash_profile`` (NOTE: If you use PyCharm or other IDE, please restart the IDE for the environmental settings to work!)
foriteminfeature_path_file: # save all the feature files in the DB
117
117
filename, ext=os.path.splitext(item)
118
118
FeatureFile.objects.get_or_create(
119
-
file_type=ext,
119
+
file_format=ext,
120
120
file=item,
121
121
features_from_file=instance,
122
122
config_file=feature_config_file,
@@ -125,6 +125,7 @@ def async_task(
125
125
)
126
126
127
127
128
+
# Potential problem: instance_pk? index_components not defined? looks like it was taken from # https://simonwillison.net/2017/Oct/5/django-postgresql-faceted-search/
0 commit comments