Playground: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
=New Project=
=New Project=


=How to Create a New Playground Project=


<blockquote style="background-color: AliceBlue; border: solid thin LightSteelBlue;">
#Overview
:<br>https://github.com/NovaOrdis/playground/blob/master/project-template/README.md<br><br>
 
</blockquote>
This template contains a basic structure and artifacts to be used when starting new
playground project.
 
#Related
 
https://kb.novaordis.com/index.php/Playground
 
#Create a New Project
 
Recursively compy the template under a new name, and customize it.
 
```
cp -r .../project-template .../<your-project-name>
cd .../<your-project-name>
rm -r .idea
```
 
then edit pom.xml, create an IntelliJ project, etc.

Revision as of 07:05, 23 January 2016

Reference Assets

Reference operations script: playground/project-template/bin/operations. Works with local and remote servers.

New Project

  1. Overview

This template contains a basic structure and artifacts to be used when starting new playground project.

  1. Related

https://kb.novaordis.com/index.php/Playground

  1. Create a New Project

Recursively compy the template under a new name, and customize it.

``` cp -r .../project-template .../<your-project-name> cd .../<your-project-name> rm -r .idea ```

then edit pom.xml, create an IntelliJ project, etc.