https://github.com/phamhongphuc1999/fsharptutorial
:four_leaf_clover::four_leaf_clover:My F sharp tutorial:four_leaf_clover:
https://github.com/phamhongphuc1999/fsharptutorial
dotnet dotnetcli fsharp
Last synced: 2 days ago
JSON representation
:four_leaf_clover::four_leaf_clover:My F sharp tutorial:four_leaf_clover:
- Host: GitHub
- URL: https://github.com/phamhongphuc1999/fsharptutorial
- Owner: phamhongphuc1999
- Created: 2022-07-04T10:10:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-13T08:55:09.000Z (about 2 years ago)
- Last Synced: 2024-12-27T14:12:37.718Z (6 months ago)
- Topics: dotnet, dotnetcli, fsharp
- Language: F#
- Homepage:
- Size: 175 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
F Sharp libraries### Solution
| ID | Solution | Note |
| :-- | :-------------------------- | :--------------- |
| 1 | [MyPractice](./MyPractice/) | Simple libraries |
| 2 | [SimpleAPI](./SimpleAPI/) | Simple API |### Format
The project use `pre-commit` and python environment to install some useful package that check your code before pushing code in github. If you want to try this solution, you must create python virtual environment firstly
```shell
python -m venv venv
```And active your environment
```shell
source venv/bin/activate
```After that, install pre-commit package
```shell
pip3 install -r requirements.txt
```Install pre-commit to github hook
```shell
pre-commit install
```Try to run
```shell
pre-commit run --all-file
```