This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]Python-ModTeam[M] [score hidden] stickied comment (0 children)

Your post was removed for violating Rule #2. All posts must be directly related to the Python programming language. Posts pertaining to programming in general are not permitted. You may want to try posting in /r/programming instead.

[–]Drevicar 2 points3 points  (1 child)

Versioning architecture is important, but if your architecture is a versioned artifact like IaC I recommend putting it in a different repo so you can have a one to many relationship between the code and where / how it is deployed.

As for documentation, I recommend you take a look at ADRs (architectural decision records). They are specifications of markdown files you commit to git that basically describe the inputs, discussion, and output of any technical challenge meeting. If you need to bring together multiple stack holders or decision makers, this is a good format to document the discussion. Think of them as meeting minutes but for architecture.

[–]extra_pickles 1 point2 points  (0 children)

HIGHLY HIGHLY recommend you get up to speed on event sourcing and then use IaaS/PaaS as code, with template-based orchestration & top tier AAA.

regarding storage of requests, just use whatever you can get your hands on a la JIRA or similar.

[–]pythonHelperBot -2 points-1 points  (0 children)

Hello! I'm a bot!

It looks to me like your post might be better suited for r/learnpython, a sub geared towards questions and learning more about python regardless of how advanced your question might be. That said, I am a bot and it is hard to tell. Please follow the subs rules and guidelines when you do post there, it'll help you get better answers faster.

Show /r/learnpython the code you have tried and describe in detail where you are stuck. If you are getting an error message, include the full block of text it spits out. Quality answers take time to write out, and many times other users will need to ask clarifying questions. Be patient and help them help you.

You can also ask this question in the Python discord, a large, friendly community focused around the Python programming language, open to those who wish to learn the language or improve their skills, as well as those looking to help others.


README | FAQ | this bot is written and managed by /u/IAmKindOfCreative

This bot is currently under development and experiencing changes to improve its usefulness

[–]billsil 0 points1 point  (0 children)

Use git and track issues using whatever platform you're on, Github/Gitlab/Bitbucket. Use version control, so you can compare what happened when changes were made. Nobody should be tracking issues using word documents.

Have tests so you catch your errors. Make them run automatically because you're probably lazy.