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: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
# Node App Setup Guide
2
2
3
-
This guide will help you set up and run the Node.js application along with PHPMyAdmin using Docker.
3
+
This guide will help you set up and run the Node.js application along with PHPMyAdmin using Docker with the added convenience of a development container.
4
4
5
5
## Prerequisites
6
6
7
7
- Git
8
-
- Docker
9
-
- Node.js
8
+
-[Docker](https://www.docker.com/)
9
+
-[Node.js](https://nodejs.org/en)
10
+
-[Visual Studio Code (or any editor with DevContainer support)](https://code.visualstudio.com/)
10
11
11
12
## Installation
12
13
@@ -32,7 +33,7 @@ cd node-express-api-bootstrap
32
33
docker-compose up -d
33
34
```
34
35
35
-
2. Open your web browser and go to [http://localhost:8080](http://localhost:8080) to access PHPMyAdmin.
36
+
2. Open your web browser and go to [http://localhost:8081](http://localhost:8081) to access PHPMyAdmin.
36
37
37
38
3. Create a new database named `testdb` as specified in the `.env` file. If you made any changes to the database name, ensure to create it with the updated name.
38
39
@@ -52,7 +53,7 @@ This command will automatically create the required tables.
52
53
53
54
6. Once the database synchronization is complete, you can start working on the application.
54
55
55
-
7. Access the Node.js application at [http://localhost/](http://localhost/).
56
+
7. Access the Node.js application at [http://localhost:8080](http://localhost:8080).
56
57
57
58
## Enjoy!
58
59
@@ -72,4 +73,4 @@ This repository provides a Node.js application for demonstrating JWT authenticat
72
73
- Utilizes Sequelize ORM for database interactions
73
74
- Supports MySQL for database storage
74
75
75
-
## [Connect to us](https://topmate.io/vitabletech)
76
+
## [Connect to us](https://topmate.io/vitabletech)
Copy file name to clipboardExpand all lines: package.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
-
"name": "node-js-jwt-auth",
3
-
"version": "1.0.0",
4
-
"description": "Node.js Demo for JWT Authentication",
2
+
"name": "node-express-api-bootstrap",
3
+
"version": "2.0.0",
4
+
"description": "This repository provides a Node.js application for demonstrating JWT authentication and authorization. It includes features such as user registration, user login, and authorization process. The application is built using Express.js, JWT for authentication, Sequelize ORM for database interactions, and MySQL for database storage.",
0 commit comments