A complete backend service that empowers Rent-N-Go. This service not only provide API for the end user, but also provide admin panel to help maintain the end user.
Written in Go.
- GNU Make
- NodeJS v16 or above
- PNPM v7 or above
- Go v1.20 and above
For Unix Based operating system, this project has provided Makefile which will take care the
installation automatically. The Makefile will assume that you have pnpm and go binaries
installed.
Simply run make and you're set.
If you don't want to use pnpm you can opt it out to use npm instead by running make install_npm and
you're set.
Rent-N-Go does not provide official way to build compilation environment for Windows user though. But windows user can still compile this adding some prerequisites:
- Git's bash (we only need bash in here. You can switch to alternatives like Cygwin if you want to)
- Choco Package Manager (we need this in order to install
makefor windows) - GNU Make (in order to run make command)
After installing choco make sure to add it in path so Git Bash can access it too. From there, type choco install make
to perform installation for Gnu's Make.
Alternatively, you can see the manual install below.
$PKG can either be npm or pnpm.
$PKGinstallgo mod downloadgo run "./generator/*.go"go run *.go migratego run *.go seed
And you're set.
- MySQL v8 or above
- Copy
.env.exampleto.env. - Edit configuration as you need
- Create a new database in your MySQL that match your
DB_NAME - Simply run the project by performing
make runand you're set.
Rent-N-Go takes an advantages and fully relies on Gorm Gen. A code generation package provided
by Gorm. Whenever you'll need to regenerate a code, simply run make generate.