timhudson / atlas

Minimalistic framework for GraphQL servers
0 stars 0 forks source link

Split CLI into a `dev` and `start` command #2

Open timhudson opened 6 years ago

timhudson commented 6 years ago

Atlas' primary objective is to make the development of a GraphQL server simple and enjoyable. To accomplish this, the dev experience needs to be 💅. To start this off, lets split atlas into two commands:

$ atlas dev

This should be run when working on your GraphQL server locally. It is optimized for the developer experience, helping you stay focused on what actually matters.

$ atlas start

This should be run in production or any deployment. It is optimized for speed and reliability.

timhudson commented 6 years ago

The initial splitting of these commands has been addressed in 068d682