while developing my app i've been using the dotenv package to fake enviroment variables.
require('dotenv').config({path : '../../../config/.env'});
const jwtSecret = process.env.JWT_SECRET;
What will happen when i push to my live server with these? How will I handle the enviroment variables then?