By constructing sentences with conjunctions, it helps you learn English better~ 😊
- pnpm version >= 8
- Node.js version >= v20
- MySQL version >= 8.0.0
- Redis version >= 5.0.0
- Docker. please make sure it is installed and running successfully on your local machine.
- The mentioned operations below are based on the root directory of the current project, please be attentive to ensure there are no errors.
docker --version # Docker version 24.0.7, build afdd53b
node --version # v20+
pnpm -v # 8+
pnpm install
If the file doesn't exist, you need to create it manually. Linux users can perform the operation with the following command.
It primarily stores environmental variable information for the main storage system, such as database connection addresses, usernames, passwords, ports, keys, and so on. The backend service will read configuration from this file. Of course, you can also customize it with your own configuration information.
cp .env.example ./apps/api/.env
The backend relies on MySQL and Redis services. Start and stop these services using the commands configured in package.json
below.
# start
pnpm docker:start
# stop
pnpm docker:stop
# delete
pnpm docker:delete
If you prefer manual, you can use the commands below.
docker compose up -d
docker compose stop
docker compose down
# commands compatible with older versions of Docker
docker-compose up -d
When executing the current command, try to wait for a short interval after the previous command, as we are using the -d
parameter, which runs the services in the background. They might still be in a 'running' state. If you encounter an error, try running the command again.
pnpm db:init
pnpm db:upload
pnpm dev:serve
pnpm dev:client
when you identify incorrect course data and make modifications, you should use the following command to update the course data in the database.
pnpm db:update
Some dependencies require compilation during installation, necessitating the presence of relevant build environments. If these environments are not available, the compilation process may fail. Additionally, different modules may require different build environments, so specific issues need to be analyzed individually. Below are specific problems encountered along with their solutions.
First try the following command to update pnpm
pnpm i -g
# or
pnpm i -g pnpm
# or
npx pnpm i -g pnpm@latest
Error installing the argon2 module on Windows
- Install Visual Studio 2015 or later, specifically the "Desktop development with C++" component. (In practice, any component containing C++ development tools and libraries will suffice.)
- If you encounter Chinese characters display issues during compilation, execute
chcp 437
in the command prompt, then rerun the install command.
When using WSL2 as a development environment in Windows, the following error occurs when starting Docker with docker compose up -d
:
permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/json": dial unix /var/run/docker.sock: connect: permission denied
Solution
Add the current user to the docker group
# Add docker user group
sudo groupadd docker
# Add the logged-in user to the docker user group
sudo gpasswd -a $USER docker
# Update user group
newgrp docker
# Test if docker command is working properly
docker images
- Do not Destructure Pinia store.
- The readability will be better when using
store
- Destructuring can lead to reactivity loss and using
storeToRefs
is also quite cumbersome
- The readability will be better when using
- Avoid including UI logic in composables.
- Such as
useMessage
- We categorize the router as UI logic, and for ease of testing, avoid including routerrelated logic in there
- Such as
Thanks to everyone who has already contributed to Earthworm! 🎉