Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
hw92
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
5
Issues
5
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Болатов Ален
hw92
Commits
07e301c0
Commit
07e301c0
authored
Apr 03, 2023
by
Рахметова Альбина
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '
#18
' into 'dev'
fixed reference to Mongo base See merge request
!19
parents
b291f9ec
ddf690fb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
.env
backend/.env
+2
-2
.gitignore
backend/public/uploads/.gitignore
+2
-0
mongoose.ts
backend/src/repository/mongoose.ts
+1
-1
No files found.
backend/.env
View file @
07e301c0
MONGO_URL='mongodb://localhost:27017'
PORT='8002'
\ No newline at end of file
MONGO_URL=mongodb://localhost/myForum
PORT=8002
\ No newline at end of file
backend/public/uploads/.gitignore
0 → 100644
View file @
07e301c0
*
!.gitignore
\ No newline at end of file
backend/src/repository/mongoose.ts
View file @
07e301c0
...
...
@@ -20,7 +20,7 @@ export class Mongo implements IDataBase {
}
public
async
init
():
Promise
<
void
>
{
this
.
client
=
await
mongoose
.
connect
(
process
.
env
.
MONGO_CLIENT_URL
||
'mongodb://localhost/my
Store
'
)
this
.
client
=
await
mongoose
.
connect
(
process
.
env
.
MONGO_CLIENT_URL
||
'mongodb://localhost/my
Forum
'
)
console
.
log
(
'Mongo mongoose is connected'
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment