Skip to content

Commit d28109f

Browse files
author
Isai Medina
committedJan 17, 2025
feat: ajustada la documentación
1 parent 095dc1f commit d28109f

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed
 

‎README.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,38 @@ This project is an API designed to store example bot commands for Discord. It is
1212

1313
## Controllers
1414

15-
You can view the documentation for each controller separately in the following files:
15+
You can find the documentation for each controller in the following files:
1616

1717
- [Auth Controller](docs/AuthController.md)
1818
- [Users Controller](docs/UsersController.md)
1919
- [Roles Controller](docs/RolesController.md)
2020
- [Posts Controller](docs/PostController.md)
21+
22+
## Installation
23+
24+
Step 1: Clone this repository
25+
26+
```bash
27+
git clone git@github.com:HormigaDev/backend-blog-botcommands.git
28+
```
29+
30+
Step 2: Enter the project directory and install dependencies
31+
32+
```bash
33+
cd backend-blog-botcommands/
34+
npm install
35+
```
36+
37+
Step 3: Configure your `.env` file, and if you are using the `r-backups` CLI, also configure the `.r-backups` file (The example content is in `.env.template` and `.r-backups.template`)
38+
39+
Step 4: Test or run the project
40+
41+
```bash
42+
npm run test
43+
```
44+
45+
or
46+
47+
```bash
48+
npm run dev
49+
```

0 commit comments

Comments
 (0)
Please sign in to comment.