Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tegarpratama/social-network
https://github.com/tegarpratama/social-network
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tegarpratama/social-network
- Owner: tegarpratama
- Created: 2024-12-06T03:53:18.000Z (26 days ago)
- Default Branch: master
- Last Pushed: 2024-12-06T10:31:41.000Z (26 days ago)
- Last Synced: 2024-12-06T10:32:19.004Z (26 days ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Project Specs
- Framework : Golang Gin Framework
- Database : MySQL
- ORM: native## Playing with migration
1. Generate migration file:
```
make migrate-create name=create_yourtablename_table
```it will generate file migration up.sql & down.sql in folder scripts/migrations
2. Up table:
```
make migrate-up
```3. Down table:
```
make migrate-down
```## Modules
1. Authentication
- Register
- Login
- Refresh Token2. CRUD Categories
3. CRUD Posts (WIP)