https://github.com/vcjpierre/microservices
React/Node.js Microservices using Docker and GraphQL
https://github.com/vcjpierre/microservices
docker graphql microservices node-microservices react
Last synced: 2 months ago
JSON representation
React/Node.js Microservices using Docker and GraphQL
- Host: GitHub
- URL: https://github.com/vcjpierre/microservices
- Owner: vcjpierre
- Created: 2019-12-26T15:57:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-20T13:16:31.000Z (6 months ago)
- Last Synced: 2025-01-27T06:19:51.033Z (4 months ago)
- Topics: docker, graphql, microservices, node-microservices, react
- Language: JavaScript
- Size: 1.47 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Microservices
## 🧐 About
React/Node.js Microservices using Docker and GraphQL.- [React](https://reactjs.org/) - A JavaScript library for building user interfaces.
- [Node.js](https://nodejs.org/) - Open source server environment.
- [Docker](https://www.docker.com/) - Tool to create, deploy, and run applications by using containers.
- [GraphQL](https://graphql.org/) - Data query and manipulation language for APIs.
- [Sequelize](https://sequelize.org/) - A Node.js ORM for Postgres, MySQL, MariaDB, SQLite and Microsoft SQL Server.
- [Redux](https://redux.js.org/) - A JavaScript library for managing application state.## 🐱🏍 Setup
In the main directory run:
```
docker-compose up
```Run migrations:
```
docker-compose exec listings-service bash
yarn db migratedocker-compose exec users-service bash
yarn db migrate
```In another terminal go to /classifieds-app to install the dependencies with ```yarn install``` and then run:
```
yarn watch
```