First, prepare the standalone-app to be ready for when it needs to be pushed into the monorepo project
$ cd standalone-app
$ git checkout main
$ git fetch
$ git checkout -b prepare-migration main
$ mkdir -p packages/standalone-app
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"time" | |
) | |
type MyUser struct { | |
ID int64 `json:"id"` |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"log" | |
) | |
type MyUser struct { | |
ID int64 `json:"id"` |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"os" | |
) | |
func main() { |