Create Strapi-App launches with port 3000 and not 1337

Thanks for the reply, while the url is for the beta, the directions look to be the same. I think this installs the most recent stable version.

Strapi is created using

yarn create strapi-app my-project --quickstart

When it launches, using β€˜strapi dev’ the admin starts on port 3000

"One more thing…
Create your first administrator :computer: by going to the administration panel at:

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ http://localhost:3000/admin β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

"
This is the contents of my /config/server.js

module.exports = ({ env }) => ({
  host: env('HOST', '0.0.0.0'),
  port: env.int('PORT', 1337),
  admin: {
    auth: {
      secret: env('ADMIN_JWT_SECRET', '4ea4d50da558033976b65e62901ae9cf'),
    },
  },
});