/este

Is What It Is

Primary LanguageJavaScriptMIT LicenseMIT

CircleCI Dependency Status

Universal React. React + React Native.

Prerequisites

Setup project

  • git clone https://github.com/este/este.git este
  • cd este
  • yarn

Setup Prisma server with Docker Compose [requires docker-compose]

  • yarn docker:up -- this will spin up a docker instance of Postgres and Prisma server at http://localhost:4466
  • yarn docker:down -- stop docker-compose servers

Deploy dev Prisma

  • yarn env dev
  • yarn deploy:db
  • yarn prisma token generate token
  • yarn playground Set database HTTP HEADERS to { "Authorization": "Bearer token" }

Dev tasks

  • yarn dev - start web development
  • yarn dev:ios
  • yarn dev:android
  • yarn env dev - copy .env.dev to .env
  • yarn env production - copy .env.production to .env
  • yarn production - test production build locally
  • yarn test
  • yarn codegen - after deploy, run yarn dev, then yarn codegen in another tab, then restart yarn dev
  • yarn deploy:db
  • yarn deploy:api
  • yarn deploy:web
  • yarn messages
  • yarn prisma --help
  • yarn prisma reset wipes the data and keeps the schema
  • yarn prisma delete get rid of the whole service

Add production Prisma

  • The same as Create Prisma, but use production name, .env.production file, and yarn env production.

Deploy

  • yarn deploy:db,
  • yarn deploy:api, use now generated URL for API_ENDPOINT in .env.production
  • yarn deploy:web

Links