https://github.com/vinisioux/simple-crud-docker
Simple CRUD with Node.js and ReactJS using Docker, Docker Compose, TypeORM, Postgres and MongoDB
https://github.com/vinisioux/simple-crud-docker
crud docker docker-compose express mongodb postgres reactjs styled-components typeorm typescript
Last synced: 3 months ago
JSON representation
Simple CRUD with Node.js and ReactJS using Docker, Docker Compose, TypeORM, Postgres and MongoDB
- Host: GitHub
- URL: https://github.com/vinisioux/simple-crud-docker
- Owner: vinisioux
- Created: 2020-12-13T20:56:28.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-10T17:26:23.000Z (almost 5 years ago)
- Last Synced: 2025-07-11T18:46:17.472Z (12 months ago)
- Topics: crud, docker, docker-compose, express, mongodb, postgres, reactjs, styled-components, typeorm, typescript
- Language: TypeScript
- Homepage:
- Size: 244 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple CRUD w/ Node.js + TypeScript + Postgres + MongoDB + ReactJS
## :rocket: Technologies
This project is being developed using the following technologies:
- [Node.js](https://nodejs.org/en/)
- [TypeScript](https://www.typescriptlang.org/)
- [Postgres](https://www.postgresql.org/)
- [MongoDB](https://www.mongodb.com/try/download/community)
- [TypeORM](https://typeorm.io/#/)
- [Express.js](https://expressjs.com/)
- [ReactJS](https://reactjs.org)
- [Styled Components](https://styled-components.com/)
---
## :dart: How To Run
To clone and run this application, you'll need [Git](https://git-scm.com), [Node.js](https://nodejs.org/en/) + [Yarn](https://yarnpkg.com/) and [Docker + Docker Compose](https://www.docker.com/) installed on your computer. From your command line:
```bash
# Clone this repository
$ git clone https://github.com/vinisioux/simple-crud-docker.git
# Go into the repository
$ cd simple-crud-docker/
# Go into server folder
$ cd server
# Start server
$ docker-compose up
# On another terminal, go to the frontend folder
$ cd ../frontend
# Install dependencies
$ yarn install
# Start the frontend server
$ yarn start
```