Skip to content

Commit 1a25809

Browse files
committed
fix build issues
1 parent 665682f commit 1a25809

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

getting-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ Distributed architecture with:
190190
- **Understand the Architecture**: Read [Framework Architecture](/architecture) to learn goserve's layered design
191191
- **Learn Core Concepts**: Explore [Core Concepts](/core-concepts) for JWT auth, services, DTOs, and caching
192192
- **See a Complete Example**: Check out the [PostgreSQL Example](/postgres/) with full authentication and blog features
193-
- **Configure Your Setup**: Review [Configuration](/configuration) for environment variables and database setup
194193

195194
## Need Help?
196195

mongo/api-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,5 +557,5 @@ Users can have the following roles:
557557

558558
## Next
559559

560-
- Try the [goserve Postgres Example](/postgres)
561-
- Explore [goserve Microservice Example](/micro)
560+
- Try the [goserve Postgres Example](/postgres/)
561+
- Explore [goserve Microservice Example](/micro/)

postgres/api-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,5 +548,5 @@ Users can have the following roles:
548548

549549
## Next
550550

551-
- Try the [goserve MongoDb Example](/mongo)
552-
- Explore [goserve Microservice Example](/micro)
551+
- Try the [goserve MongoDb Example](/mongo/)
552+
- Explore [goserve Microservice Example](/micro/)

troubleshooting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ docker exec -it goserver-mongo mongosh --eval "db.adminCommand('ping')"
124124

125125
3. **Verify connection string in .env:**
126126

127-
```env
127+
```
128128
DATABASE_URL=mongodb://goserve:changeit@goserver-mongo:27017/goserve_db?authSource=goserve_db
129129
```
130130

@@ -337,7 +337,7 @@ docker compose ps | grep nats
337337

338338
2. **Verify NATS URL in .env:**
339339

340-
```env
340+
```
341341
NATS_URL=nats://nats:4222
342342
```
343343

@@ -362,7 +362,7 @@ docker network inspect <network-name>
362362

363363
2. **Verify service names in environment:**
364364

365-
```env
365+
```
366366
# Services use container names for DNS
367367
AUTH_SERVICE_URL=http://goserver-auth:8080
368368
BLOG_SERVICE_URL=http://goserver-blog:8080
@@ -398,7 +398,7 @@ docker exec -it <redis-container> redis-cli ping
398398

399399
3. **Verify Redis URL:**
400400

401-
```env
401+
```
402402
REDIS_URL=redis:6379
403403
```
404404

0 commit comments

Comments
 (0)