Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* SERVER.JS */
- console.log(`Name : ${process.env.MY_NAME}`);
- console.log(`City : ${process.env.MY_CITY}`);
- console.log(`Language : ${process.env.MY_LANGUAGE}`);
- /* .gitignore */
- # .gitignore
- node_modules/
- .env
- /* .env.sample */
- # .env.sample file
- SERVER_PORT=5000
- DB_USER=YOUR_DB_USER
- DB_PASSWORD=YOUR_DB_PASSWORD
- SECRET_API_KEY=YOUR_SECRET_API_KEY
- MY_NAME=YOUR_MY_NAME
- MY_CITY=YOUR_MY_CITY
- MY_LANGUAGE=YOUR_MY_LANGUAGE
- /* TERMINAL */
- Name : GAEL
- City : STRASBOURG
- Language : FRANCE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement