@@ -55,7 +55,6 @@ async function installPkgx(): Promise<void> {
55
55
56
56
async function initializeProject ( options : CliOptions ) : Promise < void > {
57
57
log . info ( 'Installing dependencies...' )
58
- await new Promise ( resolve => setTimeout ( resolve , 1500 ) )
59
58
60
59
const result = await runCommand ( 'bun install' , {
61
60
cwd : options . cwd || p . projectPath ( ) ,
@@ -69,7 +68,6 @@ async function initializeProject(options: CliOptions): Promise<void> {
69
68
log . success ( 'Installed node_modules' )
70
69
log . info ( 'Ensuring .env exists...' )
71
70
72
- // if storage.exists('.env') {
73
71
if ( storage . doesNotExist ( p . projectPath ( '.env' ) ) ) {
74
72
const envResult = await runCommand ( 'cp .env.example .env' , {
75
73
cwd : options . cwd || p . projectPath ( ) ,
@@ -93,7 +91,6 @@ async function initializeProject(options: CliOptions): Promise<void> {
93
91
process . exit ( ExitCode . FatalError )
94
92
}
95
93
96
- // log.success('Generated application key')
97
94
log . info ( 'Ensuring AWS is connected...' )
98
95
99
96
// const awsResult = await runCommand('buddy configure:aws', {
@@ -107,8 +104,7 @@ async function initializeProject(options: CliOptions): Promise<void> {
107
104
108
105
log . success ( 'Configured AWS' )
109
106
110
- // 1. ensure the IDE is setup by making sure .vscode etc exists, and if not, copy them over
111
- // 2. ensure the project
107
+ // TODO: ensure the IDE is setup by making sure .vscode etc exists, and if not, copy them over
112
108
113
109
log . success ( 'Project is setup' )
114
110
log . info ( 'Happy coding! 💙' )
0 commit comments