-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,20 +5,20 @@ | |
git clone [email protected]:erdem/python-coding-test.git | ||
``` | ||
|
||
2. The project uses pre-commit to enforce code formatting and run linters before every commit. The pre-commit hooks configuration is stored in the .pre-commit-config.yaml file. Install the hooks before making any commit. | ||
2. Create a .env file (git ignored) by copying the [.env.example](.env.example) file. | ||
|
||
```bash | ||
pre-commit install | ||
``` | ||
|
||
3. Create a .env file (git ignored) by copying the [.env.example](.env.example) file. | ||
|
||
4. Install the project dependencies with poetry via call `make install` command. | ||
3. Install the project dependencies with poetry via call `make install` command. | ||
|
||
```shell | ||
make install | ||
``` | ||
|
||
4. The project uses pre-commit to enforce code formatting and run linters before every commit. The pre-commit hooks configuration is stored in the .pre-commit-config.yaml file. Install the hooks before making any commit. | ||
|
||
```bash | ||
pre-commit install | ||
``` | ||
|
||
5. Run FastAPI dev server to explore the API | ||
|
||
``` | ||
|