- -```sh -# install all dependencies, including eslint and prettier for development -npm install - -# concurrently run frontend and backend development servers -npm run dev # -w client/server to run only one -``` - -```sh -# for separate production deployments -npm install -w client -npm install -w server - -npm run build -w client -npm run build -w server - -npm start -w client -npm start -w server -``` - -
- -You may also create a `.env` file in each package directory to set their environment variables. +### Environment variables client: @@ -80,7 +56,37 @@ PGPASSWORD=examplepassword PGDATABASE=chessu ``` -