⚠️ This experience is best viewed on larger screens (min 1024px). Please view on desktop.
Project Plans
Fix bug Audit logs Review PR Design UI Test API Deploy App
app.js ×
api.js ×
const appName = "CozyWeb";

function startApp() {
  console.log(`Launching ${appName}...`);
  simulateBuild();
}

function simulateBuild() {
  let step = 0;
  setInterval(() => {
    console.log(`Step ${++step}: Compiling...`);
  }, 1500);
}
startApp();
localhost X
-
x
http://localhost:3000
Uncaught ReferenceError: simulateBuild is not defined
    at startApp (app.js:5)
    at app.js:10
dipanshu.dev
Hey, I’m Dipanshu
just building things i once feared.
getting obsessed one commit at a time.
bash
user@devbox:~$ ./cozyweb-server --start
[INFO] CozyWeb server starting...
[OK] Loading environment variables...
[INFO] Connecting to database...
[OK] Connected to db: cozy_dev
[INFO] Compiling backend modules...
[OK] Compilation successful.
[INFO] Starting frontend builder...
[INFO] CozyWeb running at http://localhost:3000
[WARN] Low memory, optimizing assets...
[OK] Optimization complete.
user@devbox:~$