Before you get started here make sure you have completed the tmrev-local-db
- Typescript
- Express
- MongoDB
- VS Code
- Nodejs
- Yarn
- clone the github repo
https://github.com/tmrev/tmrev-api.git
- create a
.env
file and acred.json
file in the root directory
you're .env
file should look something like this:
PORT=8080
DB_HOST="mongodb://localhost:27017"
# firebase auth
PROJECT_ID="
PRIVATE_KEY=""
# the movie database
TMDB_API_KEY=""
Navigate to back your Firebase project Project Settings > Service Account Click the "Generate new private key" A JSON file should have been downloaded to your computer (save the file as cred.json) move it to the root directory of tmrev-api
- This project utilizes ESLint to fix problems, and enforces Airbnb's coding standards. Please download the plugin for your corresponding IDE
- This application utilizes
yarn
, so make sure you have it installed by runningyarn -v
. - In the root of the repo, run
yarn
to install/update dependencies - Run
yarn dev
to start the server onlocalhost:8080
- When you make a commit, all stages files will be linted by
eslint
and formatted byprettier
- JavaScript and TypeScript Nightly
ms-vscode.vscode-typescript-next
- Tailwind CSS IntelliSense
bradlc.vscode-tailwindcss
- Eslint
dbaeumer.vscode-eslint
- Prettier - Code formatter
esbenp.prettier-vscode
- GitLens — Git supercharged
eamodio.gitlens