File tree 1 file changed +12
-13
lines changed
1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,18 @@ from potential AI-related security risks. Key features include:
26
26
deployment)
27
27
- [ Visual Studio Code] ( https://code.visualstudio.com/download ) (recommended IDE)
28
28
29
+ Note that if you are using pyenv on macOS, you will need a Python build linked
30
+ against sqlite installed from Homebrew. macOS ships with sqlite, but it lacks
31
+ some required functionality needed in the project. This can be accomplished with:
32
+
33
+ ```
34
+ # substitute for your version of choice
35
+ PYTHON_VERSION=3.12.9
36
+ brew install sqlite
37
+ LDFLAGS="-L$(brew --prefix sqlite)/lib" CPPFLAGS="-I$(brew --prefix sqlite)/include" PYTHON_CONFIGURE_OPTS="--enable-loadable-sqlite-extensions" pyenv install -v $PYTHON_VERSION
38
+ poetry env use $PYTHON_VERSION
39
+ ```
40
+
29
41
### Initial setup
30
42
31
43
1 . Clone the repository:
@@ -59,19 +71,6 @@ To install all dependencies for your local development environment, run
59
71
npm install
60
72
```
61
73
62
- Note that if you are running some processes (specifically the package import
63
- script) on macOS, you will need a Python build linked against sqlite installed
64
- from Homebrew. macOS ships with sqlite, but it lacks some required
65
- functionality. This can be accomplished with:
66
-
67
- ```
68
- # substitute for your version of choice
69
- PYTHON_VERSION=3.12.9
70
- brew install sqlite
71
- LDFLAGS="-L$(brew --prefix sqlite)/lib" CPPFLAGS="-I$(brew --prefix sqlite)/include" PYTHON_CONFIGURE_OPTS="--enable-loadable-sqlite-extensions" pyenv install -v $PYTHON_VERSION
72
- poetry env use $PYTHON_VERSION
73
- ```
74
-
75
74
### Running the development server
76
75
77
76
Run the development server using:
You can’t perform that action at this time.
0 commit comments