Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unknownrori/lagra_server
https://github.com/unknownrori/lagra_server
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/unknownrori/lagra_server
- Owner: UnknownRori
- Created: 2024-10-13T00:19:38.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-10T21:17:24.000Z (7 days ago)
- Last Synced: 2024-11-10T22:22:17.742Z (7 days ago)
- Language: Go
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lagra Server
E-Commerce app for campus project
## Running
> [!IMPORTANT]
> It's need [`migrate`](https://github.com/golang-migrate/migrate) for migration.
>
> And go version > 1.22.3```sh
# Clone the project and enter the directory
git clone https://github.com/UnknownRori/lagra_server
cd lagra_server# Run migration
migrate -path migrations/ -database "mysql://username:password@/lagra" up# Run the server and wait client connection
go run .# Or build the executable
go build
```