Developing Your App: Making Changes

8 steps

Make and preview changes to your application in the Development environment.

  1. 1

    From your code-server, navigate to the file you want to update. eg: app/routes.py

    Developing Your App: Making Changes, step 1
  2. 2

    Checkout a new feature git branch.\ [[git checkout -b foo-feature]]

  3. 3

    Make your change to the application. Below I used Codeium to add a simple “Hello World” route.

    Developing Your App: Making Changes, step 3
  4. 4

    Accept your changes if using an AI editor. “Accept ✅ (Alt+A)

    Developing Your App: Making Changes, step 4
  5. 5

    Restart your backend application to see the changes. You can just go the terminal where it's running and CNTRL +C, then run [[gunicorn --timeout 120 --bind 0.0.0.0:8000 run:app]] again to relaunch.

  6. 6

    Switch to tab app.devopser.io and go to your site detail page.

  7. 7

    Click “View Your App

    Developing Your App: Making Changes, step 7
  8. 8

    You can see the new route is now working in dev - great!

    Developing Your App: Making Changes, step 8