oyiks
database reset error.
After running npx nx run twenty-server:command cache:flush, I got this error
gabi@DESKTOP-FI8PK14:~/twenty$ npx nx run twenty-server:command cache:flush
✔ 1/1 dependent project tasks succeeded [1 read from cache]
Hint: you can run the command with --verbose to see the full dependent project outputs
———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
nx run twenty-server:build [local cache]
rimraf dist
nest build --path ./tsconfig.build.json- TSC Initializing type checker... ✔ TSC Initializing type checker...
TSC Found 0 issues. SWC Running...Successfully compiled: 1724 files with swc (362.23ms)
nx run twenty-server:command cache:flush
node dist/src/command/command.js cache:flushIllegal instruction (core dumped) gabi@DESKTOP-FI8PK14:~/twenty$
20 replies
database reset error.
NX Successfully ran target database:migrate for project twenty-server and 2 tasks it depends on (3m)
Nx read the output from the cache instead of running the command for 2 out of 3 tasks.
NX Nx detected a flaky task
twenty-server:database:migrate
Flaky tasks can disrupt your CI pipeline. Automatically retry them with Nx Cloud. Learn more at https://nx.dev/ci/features/flaky-tasks
nx command-no-deps -- cache:flush
nx run twenty-server:command-no-deps cache:flush
node dist/src/command/command.js cache:flushIllegal instruction (core dumped) gabi@DESKTOP-FI8PK14:~/twenty$
20 replies
Just having white screen
wsl --install
sudo apt-get install git
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
sudo apt-get install curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
corepack enable
git clone https://github.com/twentyhq/twenty.git
cd twenty
docker run -d --name my-redis-stack -p 6379:6379 redis/redis-stack-server:latest
cp ./packages/twenty-front/.env.example ./packages/twenty-front/.env
cp ./packages/twenty-server/.env.example ./packages/twenty-server/.env
nvm install # installs recommended node version
nvm use # use recommended node version
yarn
npx nx database:reset twenty-server
npx nx start twenty-server
npx nx start twenty-front
22 replies
Just having white screen
This is the output
yarn nx start twenty-server
NX Running target start for project twenty-server and 2 tasks it depends on:
———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
nx run twenty-emails:build [existing outputs match the cache, left as is]
nx run twenty-server:build [local cache]
rimraf dist
nest build --path ./tsconfig.build.json- TSC Initializing type checker... ✔ TSC Initializing type checker...
TSC Found 0 issues. SWC Running...Successfully compiled: 1514 files with swc (716.79ms)
nx run twenty-server:start
NODE_ENV=development && nest start --watch⠋ TSC Initializing type checker...> SWC Running... Successfully compiled: 1514 files with swc (752.59ms) Watching for file changes. Illegal instruction (core dumped)
22 replies