Skip to content

Commit

Permalink
📝 Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
csengor committed Feb 23, 2022
1 parent de0a6be commit 0dde26c
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,33 +37,46 @@ This is by far the most efficient method and the steps are more or less the same

5. Update pip and install the required Python libraries:

> pip install --upgrade pip
>
> pip install -r requirements.txt
>
> pip install pyinstaller
```
pip install --upgrade pip
```

```
pip install -r requirements.txt
```

```
pip install pyinstaller
```

6. Have pyinstaller build the backend Django server:

> pyinstaller --name=backend --hidden-import backend.urls --distpath ../app --clean --noconfirm manage.py
```
pyinstaller --name=backend --hidden-import backend.urls --distpath ../app --clean --noconfirm manage.py
```

7. Install yarn.

8. Navigate to /app/ and have yarn install the Nodejs libraries:

> yarn install
```
yarn install
```

9. (Windows-specific step) Remove the following line from package.json

> "executableName": "kaplan-desktop",
10. Have yarn build the executable:

> yarn make
```
yarn make
```

11. The resulting executable(s) will be under /app/out/

## Links:
1. [Kaplan Homepage](https://kaplan.pro)
1. [Docs](https://kaplan.pro/#/docs)
1. [Docs](https://kaplan.pro/docs)
1. [Kaplan Desktop@Microsoft Store](https://www.microsoft.com/en-us/p/kaplan-desktop/9nb1v5xzbmx2)
1. [Kaplan Desktop@Sourceforce](https://sourceforge.net/projects/kaplan-desktop/)

0 comments on commit 0dde26c

Please sign in to comment.