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: faqs.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,23 @@ description: A running list of frequently ask questions and their answers.
4
4
5
5
# Frequently Asked Questions
6
6
7
+
### Database
8
+
9
+
<details>
10
+
11
+
<summary>Using SQLite</summary>
12
+
13
+
SQLite is supported by Laravel as a database driver but it is no longer the recommended driver for this project. To setup SQLite as your database driver of choice use the directions below.
14
+
15
+
`v0.11.22` dropped SQLite support, to reconnect your existing database you can start on Step 3.
16
+
17
+
1. Create a volume called `speedtest-tracker` and attach it to the container.
18
+
2. Create a file called `database.sqlite`, you can do this by running `touch database.sqlite` in the mounted volume or create it in the mounted directory.
19
+
3. Update your environment variables to only include the following for under the `DB_` prefix: `DB_CONNECTION=sqlite` and `DB_HOST=/config/database.sqlite`.
0 commit comments