An open API service indexing awesome lists of open source software.

https://github.com/isutare412/react-dev

CSR practice with React.js
https://github.com/isutare412/react-dev

Last synced: 4 months ago
JSON representation

CSR practice with React.js

Awesome Lists containing this project

README

        

# React Dev

CSR practice with React.js and some servers.

![service diagram](images/service_diagram.png)

## Development

### Database

```bash
cd database

docker-compose up
```

### Backend

```bash
cd server

go mod download

./scripts/run_server.sh
```

### Frontend

```bash
cd client

npm install

npm run dev
```

## Production

```bash
docker-compose build

docker-compose up
```