Skip to content

Latest commit

 

History

History
95 lines (73 loc) · 1.97 KB

README.md

File metadata and controls

95 lines (73 loc) · 1.97 KB

Logo

Meaningful Puddles

A dynamic social platform that transforms and funds the modern college athletic experience
Powered by @Bettermode/CLI

View Demo · Report Bug · Request Feature

Table of Contents
  1. Getting started
  2. Troubleshooting

Getting started

Installation

It is recommended to use nvm to install the correct version of node.

nvm use

After that, install the dependencies:

yarn install
yarn db:generate

Running

Without Docker

yarn docker:dev:up
yarn dev

With Docker

yarn docker:up

to see the logs:

yarn docker:logs [server|proxy|mongo]

to stop the containers:

yarn docker:down

Troubleshooting

Docker stopped working

If you are using Docker to run the app, you must be aware that in case of adding a new dependency or changing the DB schema (with Prisma), you must rebuild the image. You can do that by running the following command:

yarn docker:down
yarn docker:build