Monolithic Go and React Application Boilerplate
This repository provides a simple and monolithic service with a server written in Go and frontend with React. The service does not orient the modern services (like microservices or micro frontends), but you can see the simplicity and easiness of development and deployment. Sometimes monolithic services are helpful for a small-scale or non-critical business situation such as an internal system.
This project introduce the following languages and frameworks:
- Server-side
- Frontend
The application serves a tiny social blog as a sample. The users can publish the articles and add comments. Feel free to customize and build your applications based on this project.
Quickstart (for development)
The repository contains two projects; for the frontend and server-side. The frontend project is in frontend
sub-project, you can install dependencies and run the debug server by yarn
:
$ cd frontend
$
…