Skip to content

Commit 1c208e2

Browse files
committed
chore: wip
1 parent 53dc52e commit 1c208e2

File tree

1 file changed

+1
-5
lines changed
  • storage/framework/core/buddy/src/commands

1 file changed

+1
-5
lines changed

storage/framework/core/buddy/src/commands/setup.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ async function installPkgx(): Promise<void> {
5555

5656
async function initializeProject(options: CliOptions): Promise<void> {
5757
log.info('Installing dependencies...')
58-
await new Promise(resolve => setTimeout(resolve, 1500))
5958

6059
const result = await runCommand('bun install', {
6160
cwd: options.cwd || p.projectPath(),
@@ -69,7 +68,6 @@ async function initializeProject(options: CliOptions): Promise<void> {
6968
log.success('Installed node_modules')
7069
log.info('Ensuring .env exists...')
7170

72-
// if storage.exists('.env') {
7371
if (storage.doesNotExist(p.projectPath('.env'))) {
7472
const envResult = await runCommand('cp .env.example .env', {
7573
cwd: options.cwd || p.projectPath(),
@@ -93,7 +91,6 @@ async function initializeProject(options: CliOptions): Promise<void> {
9391
process.exit(ExitCode.FatalError)
9492
}
9593

96-
// log.success('Generated application key')
9794
log.info('Ensuring AWS is connected...')
9895

9996
// const awsResult = await runCommand('buddy configure:aws', {
@@ -107,8 +104,7 @@ async function initializeProject(options: CliOptions): Promise<void> {
107104

108105
log.success('Configured AWS')
109106

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
112108

113109
log.success('Project is setup')
114110
log.info('Happy coding! 💙')

0 commit comments

Comments
 (0)