Open your GalaxyScenarioDef.galaxyScenarioDef file, it contains all the starting templates. Your new race isn't in there, so it starts with nothing, not even the two constructors.
To add it, scroll down to :
playerTypeCount 4
playerType
designName "Tech"
entityDefName "PlayerTech"
playerType
designName "Psi"
entityDefName "PlayerPsi"
playerType
designName "Phase"
entityDefName "PlayerPhase"
playerType
designName "Pirate"
entityDefName "PlayerPirate"
You'll need to add yours in there, and increase the playerTypeCount. "designName" is what you use to reference items inside the file, and the entityDefName is the name of the entity file. If you have any new units or non-standard units/buildings you want to start with, you'll have to add them to the "planetItemType" list just above the playerType list. The ItemType list works the same way. It has definitions for a bunch of units and buildings already, but you may need to add some.
Anyway, once you added your race it's time to give it a template. Right below the playerType list are the planet templates:
planetItemsTemplateCount 25
planetItemsTemplate
templateName "Empty"
subTemplates 0
groups 0
planetItemsTemplate
templateName "Template:DefaultHomePlanetSetup"
subTemplates 0
groups 3
group
condition
type "PlanetOwnerIsRace"
param "Tech"
owner "PlanetOwner"
colonizeChance 1
items 3
item "Tech:Module:CapitalShipFactory"
item "Tech:Frigate:Constructor"
item "Tech:Frigate:Constructor"
(there's Phase and Psi there too, but they look the same so I didn't paste them). So here's the default home planet setup for the TEC (the paste is from a mod I made so it has the capital factory instead of a frigate factory). As you can see, "Tech" is the designName in the playerType list. All you have to do is add your race to the "groups". So you'll now have 4 groups, and it will look the same besides replacing "Tech" with whatever the designName for your race is, and the items with whatever you want it to start with. The entry will start with "group" to symbolize the start of a new race, just like the TEC template starts right below the group count.