Skip to content

Commit e7353da

Browse files
authored
docs: fix internal storage path mentions (#94)
1 parent 68dcd89 commit e7353da

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Web/Documentation/content/1.x/1-essentials/03-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Tempest's database component is currently experimental and is not covered by our
1010

1111
## Connecting to a database
1212

13-
By default, Tempest will connect to a local SQLite database located in its internal storage, `vendor/.tempest/database.sqlite`. You may override the default database connection by creating a [configuration file](../1-essentials/06-configuration.md#configuration-files):
13+
By default, Tempest will connect to a local SQLite database located in its internal storage, `.tempest/database.sqlite`. You may override the default database connection by creating a [configuration file](../1-essentials/06-configuration.md#configuration-files):
1414

1515
```php src/Config/database.config.php
1616
use Tempest\Database\Config\SQLiteConfig;

src/Web/Documentation/content/1.x/2-features/05-file-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ $storage = $this->storage->fake(StorageLocation::DATA_SNAPSHOTS);
189189
$storage->assertFileExists('file.txt');
190190
```
191191

192-
These fake storages are located in `vendor/.tempest/tests/storage`. They get erased every time the `fake()` method is called. To prevent this, you may set the `persist` argument to `true`.
192+
These fake storages are located in `.tempest/tests/storage`. They get erased every time the `fake()` method is called. To prevent this, you may set the `persist` argument to `true`.
193193

194194
### Preventing storage access during tests
195195

src/Web/Documentation/content/main/1-essentials/03-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Tempest's database component is currently experimental and is not covered by our
1010

1111
## Connecting to a database
1212

13-
By default, Tempest will connect to a local SQLite database located in its internal storage, `vendor/.tempest/database.sqlite`. You may override the default database connection by creating a [configuration file](../1-essentials/06-configuration.md#configuration-files):
13+
By default, Tempest will connect to a local SQLite database located in its internal storage, `.tempest/database.sqlite`. You may override the default database connection by creating a [configuration file](../1-essentials/06-configuration.md#configuration-files):
1414

1515
```php src/Config/database.config.php
1616
use Tempest\Database\Config\SQLiteConfig;

src/Web/Documentation/content/main/2-features/05-file-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ $storage = $this->storage->fake(StorageLocation::DATA_SNAPSHOTS);
189189
$storage->assertFileExists('file.txt');
190190
```
191191

192-
These fake storages are located in `vendor/.tempest/tests/storage`. They get erased every time the `fake()` method is called. To prevent this, you may set the `persist` argument to `true`.
192+
These fake storages are located in `.tempest/tests/storage`. They get erased every time the `fake()` method is called. To prevent this, you may set the `persist` argument to `true`.
193193

194194
### Preventing storage access during tests
195195

0 commit comments

Comments
 (0)