Skip to content

Commit be81c75

Browse files
committed
Remove sqlite db
1 parent 92605f1 commit be81c75

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

.env.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ AUTH_ROUTE="http://localhost:3333/tokeninfo"
2222
# DATABASE
2323
#
2424
DB_TYPE="sqlite"
25-
DB_DATABASE="./src/database/mydb.sql"
25+
DB_DATABASE="./mydb.sql"
2626
DB_LOGGING=false
2727

2828
#

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ test/**/*.js
3434
test/**/*.js.map
3535
coverage/
3636
!test/preprocessor.js
37+
mydb.sql

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ The swagger and the monitor route can be altered in the `.env` file.
203203
| **src/database/factories** | Factory the generate fake entities |
204204
| **src/database/migrations** | Database migration scripts |
205205
| **src/database/seeds** | Seeds to create some data in the database |
206-
| **src/database/mydb.sql | SQLite database for integration tests |
207206
| **src/decorators/** | Custom decorators like @Logger & @EventDispatch |
208207
| **src/loaders/** | Loader is a place where you can configure your app |
209208
| **src/public/** | Static assets (fonts, css, js, img). |
@@ -215,6 +214,7 @@ The swagger and the monitor route can be altered in the `.env` file.
215214
| .env.example | Environment configurations |
216215
| .env.test | Test environment configurations |
217216
| ormconfig.json | TypeORM configuration for the database. Used by seeds and the migration. (generated file) |
217+
| mydb.sql | SQLite database for integration tests. Ignored by git and only available after integration tests |
218218

219219
## Logging
220220

src/database/mydb.sql

-28 KB
Binary file not shown.

0 commit comments

Comments
 (0)