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
This is a template for building production-ready and easily extendible REST API using Go. It follows best practices and includes a standardized project structure with all necessary components for building scalable microservices.
@@ -104,13 +105,17 @@ Create Migration:
104
105
```bash
105
106
make create_migration
106
107
```
107
-
```bash
108
+
108
109
Run Migrations:
109
-
```
110
110
```bash
111
111
make migration_up
112
112
```
113
113
114
+
Down Migrations:
115
+
```bash
116
+
make migration_down
117
+
```
118
+
114
119
## Configuration
115
120
Configuration is managed through `.env`. Environment variables can override these settings.
0 commit comments