Top "Production" questions

"Production" is commonly referred to as the stage in software lifecycle where it's available to be used by the intended end user.

How to check rails environment?

How check rails environment on Ubuntu Server? command: Rails.env => command not found command: rails.env => command not …

ruby-on-rails ubuntu production
Accessing Meteor production database

To check out what's in the (production) database for blah.meteor.com I thought we would just do: meteor mongo …

mongodb meteor production database
How to run build version using create-react-app?

So, I developed a small React application using create-react-app. (I have always made applications from scratch.) Then, after I was …

reactjs build production create-react-app
Golang production web application configuration

For those of you running Go backends in production: What is your stack / configuration for running a Go web application? …

web go production
Git production/staging server workflow

Currently my website (production server) already have a lot of code in it. And now I want to start using …

git production staging dev-to-production
How to use a library from a CDN in a Webpack project in production

I'd like to use react.min.js from a CDN in production (e.g. https://unpkg.com/[email protected]/dist/react.…

webpack cdn production webpack-externals
Laravel 5.3. How to configure a production environment?

I got started with Laravel 5.3 and I got my development environment working on local, but now I need to upload …

php laravel production-environment production laravel-5.3
What's the risk of deploying debug symbols (pdb file) in a production environment?

I have an application that logs exception strack traces and I wanted those stack traces to include file names and …

.net security production debug-symbols
Bad idea to leave "console.log()" calls in your production JavaScript code?

I have a bunch of console.log() calls in my JavaScript. Should I comment them out before I deploy to …

javascript debugging logging production
Should I remove e.printStackTrace() from my code before publishing

I was reading the the Android Publishing docs and they said to remove all Log calls from my code. I …

android exception logging production