https://github.com/ncvescera/provaactions
https://github.com/ncvescera/provaactions
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ncvescera/provaactions
- Owner: ncvescera
- License: bsd-3-clause
- Created: 2023-05-26T16:45:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T09:36:51.000Z (over 1 year ago)
- Last Synced: 2025-02-04T19:51:17.648Z (4 months ago)
- Language: C++
- Size: 1.12 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GUI
- Python 3
- Node
- virtualenv## Installation
``` bash
yarn run init
```This will create a virtual environment, install pip and Node dependencies. Alternatively you can perform these steps manually.
``` bash
yarn install
pip install -r requirements.txt
```On Linux systems installation system makes educated guesses. If you run KDE, QT dependencies are installed, otherwise GTK is chosen. `apt` is used for installing GTK dependencies. In case you are running a non apt-based system, you will have to install GTK dependencies manually. See [installation](https://pywebview.flowrl.com/guide/installation.html) for details.
## Usage
To launch the application.
``` bash
yarn run start
```To build an executable. The output binary will be produced in the `dist` directory.
``` bash
yarn run build
```To start a development server (only for testing frontend code).
``` bash
yarn run dev
```To clean the developement environment, this will delete `gui`, `dist`, `build` directories.
``` bash
yarn run clean
```To eject create-react-app and tweak the configuration as you may wish.
``` bash
yarn run eject
```To test the frontend code if you have written tests.
``` bash
yarn run frontend:test
```