neverl8 is a streamlined Go application utilizing the Go-Chi router, GORM ORM, Postgres, and a Vue frontend utilizing Vuetify components. Designed for simplicity and efficiency, this project will serve as the essential scheduler for Rise8.
To get the most out of neverl8, please ensure you have the following installed on your system:
Follow these simple steps to get neverl8 up and running on your machine:
git clone https://github.com/rise8-us/neverl8.git
docker-compose up --build
Congratulations! The application should now be accessible at http://localhost:8080.
neverl8 leverages pre-commit for managing git hooks, aiding in maintaining high code quality and consistency across contributions.
To integrate pre-commit into your development workflow:
pre-commit install
With these steps completed, pre-commit hooks will automatically execute on every git commit, enhancing your code quality checks.
neverl8 also incorporates golangci-lint
for enforcing Go best practices and code styles. To use golangci-lint
in your development process:
golangci-lint run
in the project backend directory to analyze your code.neverl8 utilizes Vue for its frontend. To view and edit the frontend navigate to the frontend folder from root and type:
npm install
npm run serve
neverl8 embraces testing as a fundamental part of the development process. To run the unit & integration tests and ensure your setup is correctly configured:
go test ./...
This command triggers all the unit and integration tests within the project, verifying the integrity and functionality of your code.