Skip to content

jinyoung4478/react-pouchdb

Repository files navigation

React + PouchDB

환경 세팅

CouchDB with Docker

  1. Create docker-compose.yml
version: '3'
services:
  couchserver:
    image: couchdb
    restart: always
    ports:
      - '5984:5984'
    environment:
      - COUCHDB_USER=admin
      - COUCHDB_PASSWORD=YOURPASSWORD
    volumes:
      - ./dbdata:/opt/couchdb/data
  1. Run docker compose docker-compose up -d

  2. Access CouchDB admin http://localhost:5984/_utils/

  3. Create _users Database

image

Client 세팅

  1. Clone project https://github.com/jinyoung4478/react-pouchdb.git

  2. Install dependencies: yarn

  3. Start the development server: yarn dev

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published