Request for profile for Anet A5 (X) (Pro)

Hi fellow Octoprint users.
Anybody already setup Octoprint for Anet ET5 (X) (Pro)?
I'm looking for the GCODE scripts like "Before print job starts", "After print job completes", etc.
A nice overview of what is needed is welkom.
Regards

Here's a non tested (well at least not on that printer) start stop script

start gcode

M220 S100 ;Reset Feedrate
M221 S100 ;Reset Flowrate

G28 ;Home
M420 S1 ;load grid

G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up
G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position
G1 X10.1 Y250.0 Z0.28 F1500.0 E15 ;Draw the first line
G1 X10.4 Y250.0 Z0.28 F5000.0 ;Move to side a little
G1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line
G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up

stop gcode

M400
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positionning

G1 X0 Y250 ;Present print
M107 ;fan off
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed

M84 X Y E ;Disable all steppers but Z

Thanks for the example. I will try this out.