Skip to content
BENGALURU · UTC+5:30 · FOUR HOURS OF DAILY OVERLAP WITH LONDON MORNINGS, OR US MORNINGS ON REQUESThello@turtlebyte.in
turtlebyteStart a discovery
HOME/SERVICES
PERTH, WESTERN AUSTRALIA · 12:30–16:30 PERTH TIME COVERED

Web platform development in Perth

Every contractor on a Western Australian mine or plant site has to prove itself before it starts: insurances, safety systems, licences, inductions, and approvals from the client's procurement, safety and site teams. For resources companies and principal contractors in Perth, that process often runs on emails, shared drives and a spreadsheet of expiry dates, and a missing document stops work on the day.

We build web platforms for contractor management that give each party the right door: contractors upload and renew their documents, reviewers approve against clear criteria, site teams see who is cleared to start, and expiring items raise warnings weeks ahead. Permissions are designed carefully, so each contractor sees only its own records. We integrate with your procurement and HR systems instead of replacing them.

WHAT IS DIFFERENT ABOUT PERTH

Perth runs mines it cannot see. Rio Tinto controls trains, trucks and drills in the Pilbara from its operations centre in Perth, BHP runs much of its Western Australian iron ore logistics from a remote operations centre in the city, and Woodside, Fortescue and Chevron Australia keep their head offices here. Around them sits a large sector of engineering consultancies, contractors and mining equipment, technology and services firms. Most of the software work in the city exists to serve that industry, and it comes with that industry's habits: safety first, careful change control and very little tolerance for downtime.

The line that matters is between operational technology and everything else. Control systems, autonomous haulage and plant automation belong to specialists. The opportunity for outside engineers is on the business side of that line: maintenance and shutdown planning, historian data read out for analysis, contractor and workforce systems for a fly-in fly-out workforce, reporting, and the internal tools that stitch them together. Energy and utility businesses need the same kind of work, and beyond resources the state has its own buyers, from agencies and universities in the city to the wineries of Margaret River selling across the continent.

Hiring is shaped by the resources sector, which competes hard for experienced engineers and can pay for them. Indeed puts the average base salary for a software engineer in Perth at A$100,253, from 59 reported salaries, and a consultancy or scale-up bidding against a mining major for the same person often waits a long time. That is where we fit: senior engineers on a defined piece of work within days, with the code in your repositories from the first commit.

Our four hours of daily overlap land in your afternoon, moved to suit your team. Perth is the closest Australian capital to India's time zone, and neither Western Australia nor India uses daylight saving, so the window sits at the same point in your day all year. Your morning is for your own team and the site calls; the afternoon is for stand-ups, reviews and decisions with the engineer who writes your code.

PERTH PRICING, PLAINLY
Mid-level software engineer, Perth~A$100k
Our rate$35/hr
Minimum engagement$5,000
Overlap with Perth4 hrs, 12:30–16:30 Perth time

We are the right fit for defined work on the business side of the operation: data, reporting, maintenance and workforce tools, and contractor systems. Senior engineers start within days, the first piece is a fixed-price two weeks, and we can carry the roadmap through the months before your own hire starts. Agencies can put the work under their own name.

WHAT THIS LOOKS LIKE IN PRACTICE

Four ways this arrives.

The first enterprise customer wants SSO and custom roles

We replace the role column with a permission model that can express teams, access to individual resources and roles the customer defines, add SAML or OIDC sign-in, and write the audit log their security questionnaire will ask about.

One customer saw another customer's data

Or very nearly did. We find every query that can cross a tenant boundary, enforce the tenant in one layer rather than in every handler, and add tests that try to read across that boundary on purpose.

Support cannot see what the user sees

We build the admin side properly: search across organisations, an audited view-as-user mode, and screens for access and usage. Support stops asking an engineer to run a query against production every time a customer says something looks wrong.

Only one person can deploy it

An early Next.js app with auth stitched into middleware, a custom server, and a release process that lives in someone's head. We move it forward in small steps, with preview environments and a pipeline anyone on the team can ship from.

STACK
APPLICATION
Next.jsReactTypeScripttRPC
IDENTITY & ACCESS
Auth.jsLogtoOpenFGAPostgres row-level security
DATA
PostgreSQLPrismaDrizzleDragonflyDB
DELIVERY
VercelRailwayDockerGitHub Actions
RELATED CASE STUDY
FM360

A Next.js platform scoped per organisation, where an administrator can view the app as any other user and each Tableau report opens only for people granted it.

Read the write-up →
You talk to the engineer writing the code
Four hours of daily overlap with your working day
We sign an NDA before any specifics
Most engagements start with a fixed-price two-week piece of work
FAQ

Asked by Perth teams.

How do you work with teams in Perth?+

We are in Bengaluru, and four hours of every working day overlap with your afternoon, moved to suit your team. Perth is the closest Australian capital to India's time, and neither side changes its clocks, so the window stays put all year. Stand-ups, code reviews and design calls happen live in it. We work in your tools, whether that is Slack, GitHub or Linear, and every call is with the engineer who writes the code.

Do you build for mining and energy companies?+

Yes, on the business side of the operation. We build pipelines that read historian data out for analysis, maintenance and shutdown planning tools, contractor management platforms, apps that put a FIFO worker's roster, flights and documents in one place, and dense planning views for remote operations teams. We integrate with the maintenance, HR and procurement systems you already run, and start with the problem that costs you most on site.

How does your rate compare to hiring in Perth?+

Indeed puts the average base salary for a software engineer in Perth at around A$100,000, and the resources sector often pays more to win experienced people. Our published rate is $35/hour with a $5,000 minimum, or $5,400 a month for one embedded engineer. There is no recruiting time and no employment overhead, and work can start within days. The first piece is a fixed-price two-week engagement at $2,800, so you judge us on what ships.

What do the first two weeks look like?+

You share the context, with an NDA signed before anything specific. Within two days you are on a 30-minute call with the engineer who would do the work, and within a week you have a written plan. Then comes a fixed-price two-week piece for $2,800: one real thing, such as a maintenance report, a contractor portal screen or a data feed, built in your repositories and reviewed with you in your afternoons.

What is wrong with a role column?+

Nothing, until you have more than one kind of customer. A role says who a user is; most real questions are about what they can do to one specific thing, inside one specific organisation. Encoded as role checks, every new requirement becomes a code change in many places. We model permissions as data, check them in one place, and test them like any other logic.

Should we use an auth provider or build our own?+

Use a provider for identity: passwords, magic links, SSO and multi-factor. It is a solved problem and getting it wrong is expensive. Authorisation, meaning what a signed-in user may do, is specific to your product and usually belongs in your own code and database. We wire the first to the second and keep the line between them clear.

How do you handle multi-tenancy?+

Usually one database with a tenant ID on every row, enforced in one place: Postgres row-level security, or a data-access layer every query has to pass through, rather than each handler remembering. A separate database per tenant is sometimes right, for one very large customer or strict isolation, and we will say if that applies to you.

Where does it get hosted?+

Wherever suits your team. Vercel is the least effort for Next.js and fine for most platforms. If cost or long-running background work make that awkward, we run it in containers on Railway, AWS or your own Kubernetes. The repository, the cloud accounts and the bill are in your name either way.

What do enterprise customers ask for, and can you build it?+

Single sign-on through SAML or OIDC, audit logs, role management, session controls, encryption and data export. We build each of them into the platform and help you answer the technical questions on a customer's checklist accurately, so the security conversation speeds the deal up instead of stalling it.

RELATED
Web platform development →Backend and API development in Perth →Frontend development in Perth →Mobile app development in Perth →Ecommerce development in Perth →AI integration in Perth →Machine learning development in Perth →Data engineering in Perth →Cloud infrastructure and DevOps in Perth →MVP development in Perth →SaaS development in Perth →Custom software development in Perth →

Does a missing document stop work on site?

Send a paragraph on your contractors, your approvals and where the process slows down. We will reply with how we would structure it.

Start a discoverySchedule a call
hello@turtlebyte.inReply within one working day, from the engineer.
You talk to the engineer writing the code
Four hours of daily overlap with your working day
We sign an NDA before any specifics
Most engagements start with a fixed-price two-week piece of work
SERVICES
CAPABILITIES
INDUSTRIES & AI
COMPANY
PRICING & LEGAL
TurtleByte · Bengaluru, India
hello@turtlebyte.inLinkedIn ↗Play Store ↗© 2026