You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Fill environment variables in`.env` according to the document.
54
+
55
+
4. Start the dev server.
56
+
```sh
57
+
nodemon
58
+
```
59
+
60
+
If you don't need auto reload, you can use the following command instead:
61
+
62
+
```sh
63
+
npm start
64
+
```
65
+
66
+
### Docker
67
+
68
+
Start Docker Compose containers.
69
+
70
+
```sh
71
+
docker compose up -d --build
72
+
```
44
73
45
74
## Environment variables
46
75
47
76
- `FRONTEND_BASE_URL` Base URL of website, is used to create verification link
48
77
- `RESERVE_MONGODB_URI` This URI is used when connecting to MongoDB.
49
78
- `EMAIL` Email address for sending email
50
79
- `EMAIL_PASSWORD` Password for login to Email address in `EMAIL`
80
+
81
+
## Contribution
82
+
83
+
Welcome!
84
+
85
+
Don't forget to update the docs after you update some code. (Especially the JSDoc comments of the APIs.)
86
+
87
+
## FQA
88
+
89
+
<details>
90
+
91
+
<summary>Why choose JavaScript?</summary>
92
+
93
+
Because it's simple. The CS department of our school has JavaScript-related courses, so there are more students who have JavaScript skills than TypeScript.
0 commit comments