-
Notifications
You must be signed in to change notification settings - Fork 0
Quickstart tutorial
This tutorial shows how to set up a simple client/server application using Phovea. The name of the example application is "Test" but you can name it as you like of course.
npm install -g yo
npm install -g github:phovea/generator-phovea
Create repository for application. The application repository is the place where the whole application code resides.
- Go to github.com and create a new repository. Name the repository "test". Don't create a README.
- Clone it locally: Open a terminal and enter:
git clone https://github.com/<username or organization>/test.git
Create a product repository
- Go to github.com and create a new repository. Name the repository "test_product". The _product suffix is important so that Phovea knows that it is a Product. Don't create a README.
- Clone it locally: Open a terminal and enter:
git clone https://github.com/<username or organization>/test_product.git
cd test
yo phovea:init-app
Application Title: Test
Client Only: N
Add nesessary libraries
Plugin name: test
Description: A simple test application
Leave all other fields as they are (just press Enter)
In package.json, change under dependencies all phovea references to develop branch.
"phovea_core": "0.1.0" -> "phovea_core": "github:phovea/phovea_core#develop"
"phovea_ui": "0.1.0" -> "phovea_ui": "github:phovea/phovea_ui#develop"
git add *
git commit -m "Initial commit"
git push
If you now go to your Github Test repository, you should see the project the project files and a Readme that explains the installation process.
Stay in the test folder and enter following commands:
git checkout -b develop
git commit -m "New development branch"
git push --set-upstream origin develop
cd test_product
yo phovea:init-product
Plugin name: test_product
Description: A test product
Leave project homepage and author's credential as they are
Service type: Web
Service name: Testservice
Primary respository: <username or organization>/test
Primary repository branch: develop
Additional plugins: ENTER
Add custom additional plugins: N
Add another service: y
Service type: Rest-API
Service name: test_server
primary repository: phovea/phovea_server
primary repository branch: develop
Add custom additional plugin? N
Add another service? N
git add *
git commit -m "Initial commit"
git push
Create new folder named workspace and switch to it.
mkdir workspace
cd workspace
yo phovea:setup-workspace <username or organization>/test_product
SSH clone: No
cd workspace\test
docker-compose up -d
Note:
- For docker, you need hardware virtualization enabled.
- If you encounter the following error under Windows: _ERROR: for <test_api_1> Cannot create container for service api: Drive has not been shared _ Click on the whale symbol in the taskbar -> Settings -> Shared Drives -> Enable
cd workspace\test
npm run start:test
Open PyCharm and open the project which is located in workspace/test. You can delete the test and test_product folders, since the whole application code is available in the workspace folder. Modify/extend you project as needed and commit your changes to the github repository.
Note:
- You can commit directly from your Pycharm IDE by pressing STRG+K