Giter Site home page Giter Site logo

asp.net_web_app_tutorial's Introduction

notes: I will sooner than later create some documentation for how to use this project for your own purposes. For now one thing I will add is that if you already know how to use this project for the most part or wish to explore it, I do have a few tips below.

TO KEEP YOUR API KEYS SAFE:

create a file in the main directory and name it defineEnvironmentVars.js inside of that file, add this code:

add any extra environment variables inside of the function

exports.setEnvironmentVariables = function() { process.env["FILESTACK_KEY"] = "yourFilestackKey" process.env["NODEMAILER_USERNAME"] = "yourEmailForNodeMailerDelivery" process.env["NODEMAILER_PASSWORD"] = "yourPass" process.env["AUTH_SECRET"] = "yourSecret" }

add the defineEnvironmentVars.js file to your .gitignore file now, when you are ready to build your code, just run "npm run build" this will prepare a javascript file for production, and it will swap out the setEnvironmentVariables.js's function with an empty function, thereby keeping the sensitive info out of your production file.

for development do npm run go, this will set you up for development and also it will replace the empty function inside of setEnvironmentVars.js with the function from the defineEnvironmentVars.js file to ensure that your process.env will have those variables set when the server is started.

to add your changes to git, instead of using "git add ." I created a script to run that will hide sensitive info and then will run the "git add ." command for you. To use this, just run the command "npm run git"

asp.net_web_app_tutorial's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.