There should be a .env file for the frontend and backend.
For the frontend, add a .env file on myblog/blog-frontend and put this line of code:
REACT_APP_SERVER_BASE_URL=http://localhost:5000
For the backend, add a .env file on myblog/blog-backend and put this line of code and set your own values:
JWT_ACCESS_TOKEN_SECRET= your_jwt_access_token_secret
JWT_ACCESS_TOKEN_EXPIRATION_TIME= your_jwt_access_token_exp_time (in seconds)
JWT_REFRESH_TOKEN_SECRET= your_jwt_refresh_token_secret
JWT_REFRESH_TOKEN_EXPIRATION_TIME= your_jwt_refresh_token_exp_time (in seconds)
To run locally:
To run using Docker:
Further plans: