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;
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
add a comment |
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
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
add a comment |
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
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
python git iis workflow windows-server-2012-r2
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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