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
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'),
},
},
});