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
@@ -59,7 +61,7 @@ The main frameworks and libraries used in the project are listed here. A complet
59
61
60
62
2. Get the latest stable version [PostgreSQL](https://www.postgresql.org/download/ 'PostgreSQL') for your OS. Check the correctness of the work - try to create a database, a table - for this you can use [pgAdmin](https://www.pgadmin.org/ 'pgAdmin') or any other convenient way you find.
61
63
62
-
3. Create in PostgreSQL **empty** database for the project. For example, _thread_.
64
+
3. Create in PostgreSQL 2 **empty** databases for the project. For example, _thread_ and _thread-test_. The main idea is that you can check if code works properly in 2 ways: automated via backend tests and manually via interaction between frontend and backend. And these are independent processes.
63
65
64
66
4. Install Git.
65
67
@@ -94,7 +96,7 @@ The main frameworks and libraries used in the project are listed here. A complet
94
96
npx simple-git-hooks
95
97
```
96
98
97
-
**Now, for each of your commits, the linter will be launched and check your code.**
99
+
**Now, for each of your commits, the linter will be launched and check your code. It's very important and must have thing, developer should follow linter instructions, without it the PR cannot be merged in real life(IN YOUR CASE, THE WORK MAY NOT BE PROPERLY EVALUATED)**
0 commit comments