Skip to content

bruno-queiroz/flash-memo-backend

Repository files navigation

Flash Memo Backend

This is the backend of my Flash Memo application.

How to start the project

  1. Clone the project
git clone https://github.com/bruno-queiroz/flash-memo-backend.git
  1. Install dependencies
npm install
  1. Create a .env file on the root of the project
  2. Copy the environment variables from the .env.example file to the .env file
  3. Run a PostgreSQl database
  4. Put your PostgreSQL URL connection on the DATABASE_URL environment variable
  5. Create a JWT secret
  6. Put your JWT secret on the JWT_SECRET environment variable
  7. Run the project
npm run dev