How do I Improve and Scale my App Development Workflow?How do I discard unstaged changes in Git?How to remove local (untracked) files from the current Git working treeHow to modify existing, unpushed commit messages?How do I undo 'git add' before commit?How do I undo the most recent local commits in Git?How do I force “git pull” to overwrite local files?How do I check out a remote Git branch?How do I delete a Git branch locally and remotely?How do I revert a Git repository to a previous commit?How do I rename a local Git branch?

Is "The life is beautiful" incorrect or just very non-idiomatic?

Is “I am getting married with my sister” ambiguous?

Is using a hyperlink to close a modal a poor design decision?

Does norwegian.no airline overbook flights?

Does travel insurance for short flight delays exist?

Ensuring all network services on a device use strong TLS cipher suites

Why do banks “park” their money at the European Central Bank?

Architectural feasibility of a tiered circular stone keep

Are the players on the same team as the DM?

How do I get toddlers to stop asking for food every hour?

What is the difference between "Grippe" and "Männergrippe"?

Examples of topos that are not ordinary spaces

How would you identify when an object in a Lissajous orbit needs station keeping?

Anatomically Correct Whomping Willow

Algorithms vs LP or MIP

Numbers Decrease while Letters Increase

Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?

Is gzip atomic?

Tensorflow - logistic regrssion -oneHot Encoder - Transformed array of differt size for both train and test

Is there any practical application for performing a double Fourier transform? ...or an inverse Fourier transform on a time-domain input?

How to make Ubuntu support single display 5120x1440 resolution?

Understanding Parallelize methods

Why do all fields in a QFT transform like *irreducible* representations of some group?

Why isn't "I've" a proper response?



How do I Improve and Scale my App Development Workflow?


How do I discard unstaged changes in Git?How to remove local (untracked) files from the current Git working treeHow to modify existing, unpushed commit messages?How do I undo 'git add' before commit?How do I undo the most recent local commits in Git?How do I force “git pull” to overwrite local files?How do I check out a remote Git branch?How do I delete a Git branch locally and remotely?How do I revert a Git repository to a previous commit?How do I rename a local Git branch?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have a Python web application built with Django. It is served on IIS on a Windows Server 2012. This server is a remote server to which I have access. My current development process looks like one of these two things (depending on the day):



  • Directly edit the Python code on the remote server and hope changes don't break anything (and if they do, quickly try to fix them)

  • Copy the entire web app to my local machine, make changes there and get it working, then copy the code snippets that I changed to the server version

These are obviously not ideal ways to develop and deploy an application. What specific steps can I take to make this better, more flexible, and more scalable? This is what I have come up with so far:



  • I need to start using git, and I can install that on both the local and remote machines

  • However, I cannot communicate with the remote server via SSH

  • I also don't think I can communicate with the remote server with HTTPS, because the only viable git web server for IIS is Bonobo, and it does not appear to be active/fully supported. Other self-hosted options (i.e. gitea) appear to need open ports such as 80 and 443...which the IIS site needs.

  • I could (unlikely, but potentially) use GitLab to hand code revision, but it would not be hosted on the same remote server (which is where deployment must take place)

What are the primary options to make this workflow more bearable and stable?










share|improve this question


























  • Why can you not use ssh?

    – evolutionxbox
    Mar 27 at 17:57











  • not allowed by the admins

    – OverflowingTheGlass
    Mar 27 at 17:58











  • Not allowing SSH sounds like the admins don't know what it is? Maybe you can use something like rsync?

    – evolutionxbox
    Mar 27 at 17:59












  • that still uses rsh or ssh though, right? agreed on them not necessarily understanding it

    – OverflowingTheGlass
    Mar 27 at 18:01


















0















I have a Python web application built with Django. It is served on IIS on a Windows Server 2012. This server is a remote server to which I have access. My current development process looks like one of these two things (depending on the day):



  • Directly edit the Python code on the remote server and hope changes don't break anything (and if they do, quickly try to fix them)

  • Copy the entire web app to my local machine, make changes there and get it working, then copy the code snippets that I changed to the server version

These are obviously not ideal ways to develop and deploy an application. What specific steps can I take to make this better, more flexible, and more scalable? This is what I have come up with so far:



  • I need to start using git, and I can install that on both the local and remote machines

  • However, I cannot communicate with the remote server via SSH

  • I also don't think I can communicate with the remote server with HTTPS, because the only viable git web server for IIS is Bonobo, and it does not appear to be active/fully supported. Other self-hosted options (i.e. gitea) appear to need open ports such as 80 and 443...which the IIS site needs.

  • I could (unlikely, but potentially) use GitLab to hand code revision, but it would not be hosted on the same remote server (which is where deployment must take place)

What are the primary options to make this workflow more bearable and stable?










share|improve this question


























  • Why can you not use ssh?

    – evolutionxbox
    Mar 27 at 17:57











  • not allowed by the admins

    – OverflowingTheGlass
    Mar 27 at 17:58











  • Not allowing SSH sounds like the admins don't know what it is? Maybe you can use something like rsync?

    – evolutionxbox
    Mar 27 at 17:59












  • that still uses rsh or ssh though, right? agreed on them not necessarily understanding it

    – OverflowingTheGlass
    Mar 27 at 18:01














0












0








0








I have a Python web application built with Django. It is served on IIS on a Windows Server 2012. This server is a remote server to which I have access. My current development process looks like one of these two things (depending on the day):



  • Directly edit the Python code on the remote server and hope changes don't break anything (and if they do, quickly try to fix them)

  • Copy the entire web app to my local machine, make changes there and get it working, then copy the code snippets that I changed to the server version

These are obviously not ideal ways to develop and deploy an application. What specific steps can I take to make this better, more flexible, and more scalable? This is what I have come up with so far:



  • I need to start using git, and I can install that on both the local and remote machines

  • However, I cannot communicate with the remote server via SSH

  • I also don't think I can communicate with the remote server with HTTPS, because the only viable git web server for IIS is Bonobo, and it does not appear to be active/fully supported. Other self-hosted options (i.e. gitea) appear to need open ports such as 80 and 443...which the IIS site needs.

  • I could (unlikely, but potentially) use GitLab to hand code revision, but it would not be hosted on the same remote server (which is where deployment must take place)

What are the primary options to make this workflow more bearable and stable?










share|improve this question
















I have a Python web application built with Django. It is served on IIS on a Windows Server 2012. This server is a remote server to which I have access. My current development process looks like one of these two things (depending on the day):



  • Directly edit the Python code on the remote server and hope changes don't break anything (and if they do, quickly try to fix them)

  • Copy the entire web app to my local machine, make changes there and get it working, then copy the code snippets that I changed to the server version

These are obviously not ideal ways to develop and deploy an application. What specific steps can I take to make this better, more flexible, and more scalable? This is what I have come up with so far:



  • I need to start using git, and I can install that on both the local and remote machines

  • However, I cannot communicate with the remote server via SSH

  • I also don't think I can communicate with the remote server with HTTPS, because the only viable git web server for IIS is Bonobo, and it does not appear to be active/fully supported. Other self-hosted options (i.e. gitea) appear to need open ports such as 80 and 443...which the IIS site needs.

  • I could (unlikely, but potentially) use GitLab to hand code revision, but it would not be hosted on the same remote server (which is where deployment must take place)

What are the primary options to make this workflow more bearable and stable?







python git iis workflow windows-server-2012-r2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 17:43







OverflowingTheGlass

















asked Mar 27 at 17:36









OverflowingTheGlassOverflowingTheGlass

9168 silver badges29 bronze badges




9168 silver badges29 bronze badges















  • Why can you not use ssh?

    – evolutionxbox
    Mar 27 at 17:57











  • not allowed by the admins

    – OverflowingTheGlass
    Mar 27 at 17:58











  • Not allowing SSH sounds like the admins don't know what it is? Maybe you can use something like rsync?

    – evolutionxbox
    Mar 27 at 17:59












  • that still uses rsh or ssh though, right? agreed on them not necessarily understanding it

    – OverflowingTheGlass
    Mar 27 at 18:01


















  • Why can you not use ssh?

    – evolutionxbox
    Mar 27 at 17:57











  • not allowed by the admins

    – OverflowingTheGlass
    Mar 27 at 17:58











  • Not allowing SSH sounds like the admins don't know what it is? Maybe you can use something like rsync?

    – evolutionxbox
    Mar 27 at 17:59












  • that still uses rsh or ssh though, right? agreed on them not necessarily understanding it

    – OverflowingTheGlass
    Mar 27 at 18:01

















Why can you not use ssh?

– evolutionxbox
Mar 27 at 17:57





Why can you not use ssh?

– evolutionxbox
Mar 27 at 17:57













not allowed by the admins

– OverflowingTheGlass
Mar 27 at 17:58





not allowed by the admins

– OverflowingTheGlass
Mar 27 at 17:58













Not allowing SSH sounds like the admins don't know what it is? Maybe you can use something like rsync?

– evolutionxbox
Mar 27 at 17:59






Not allowing SSH sounds like the admins don't know what it is? Maybe you can use something like rsync?

– evolutionxbox
Mar 27 at 17:59














that still uses rsh or ssh though, right? agreed on them not necessarily understanding it

– OverflowingTheGlass
Mar 27 at 18:01






that still uses rsh or ssh though, right? agreed on them not necessarily understanding it

– OverflowingTheGlass
Mar 27 at 18:01













0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55383394%2fhow-do-i-improve-and-scale-my-app-development-workflow%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55383394%2fhow-do-i-improve-and-scale-my-app-development-workflow%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript