From e7a752971a2ac608953da0c92a2f31febec7acaa Mon Sep 17 00:00:00 2001 From: Lykke Axlin Date: Tue, 14 Sep 2021 15:25:27 +0200 Subject: [PATCH] removed files Signed-off-by: lykkeaxlin Co-authored-by: klaraab Signed-off-by: Lykke Axlin --- plugins/bazaar-backend/dev.sqlite3 | Bin 24576 -> 0 bytes plugins/bazaar-backend/knexfile.js | 67 ----------------------------- 2 files changed, 67 deletions(-) delete mode 100644 plugins/bazaar-backend/dev.sqlite3 delete mode 100644 plugins/bazaar-backend/knexfile.js diff --git a/plugins/bazaar-backend/dev.sqlite3 b/plugins/bazaar-backend/dev.sqlite3 deleted file mode 100644 index 7d59f7f995807814b5bda593b383f8ca842f6577..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 24576 zcmeI(yKmD#90%~bI8LZg8q_62sdT`SC{;;i`h?G0Kzjj}izUosH2tWV=5P$##AOHaf zKmY>&qrl9zi#v%|wPek$ZP?tjpTV6iily)Ya+}b_e zOz%9;>tO#a$;D&ykw@N;N7YulUDKKOxblW+*192`2**51f6SU$o73_SqF*QwfB*y_ z009U<00Izz00bZa0SIiPzyoTN;~l%zXf+$hjb>ASI?!x5zVy}6Sxi5D`9_Ck{hup; zC*_}dhXMfzKmY;|fB*y_009U<00Izzz_tkN<*fQn=BEV}YPGX%^PglazW=`><*RK; z4{<^O0uX=z1Rwwb2tWV=5P$##AaDZ#i(2H4S^w)l{i8qt0uX=z1Rwwb2tWV=5P$## jAaIKXu>QZrlZ(_K009U<00Izz00bZa0SG_<0!xA4un#SI diff --git a/plugins/bazaar-backend/knexfile.js b/plugins/bazaar-backend/knexfile.js deleted file mode 100644 index a854555556..0000000000 --- a/plugins/bazaar-backend/knexfile.js +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright 2021 The Backstage Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -module.exports = { - client: 'postgresql', - connection: { - database: 'backstage_plugin_bazaar', - user: 'postgres', - password: 'herpderp', - }, - useNullAsDefault: true, - migrations: { - directory: './migrations', - }, - - // development: { - // client: 'sqlite3', - // connection: { - // filename: './dev.sqlite3' - // } - // }, - - // staging: { - // client: 'postgresql', - // connection: { - // database: 'my_db', - // user: 'username', - // password: 'password' - // }, - // pool: { - // min: 2, - // max: 10 - // }, - // migrations: { - // tableName: 'knex_migrations' - // } - // }, - - // production: { - // client: 'postgresql', - // connection: { - // database: 'my_db', - // user: 'username', - // password: 'password' - // }, - // pool: { - // min: 2, - // max: 10 - // }, - // migrations: { - // tableName: 'knex_migrations' - // } - // } -};