- Node.js (for npm)
- bower
npm install -g bower
(restart console after install, if it's not working add the path in environment variables by hand) - python3.4 (for Windows you can install miniconda3.4)
Verify that node is in your PATH
npm install
bower install
npm install grunt
npm install -g grunt-cli
optional but recommended :
grunt build
(each time you modify config.js)
Install those packages with pip
or conda
:
- pyodbc (for SQL Server database) or psycopg2 (for PostrgreSQL database)
- sqlalchemy
- pyjwt
#####Config File
Run the setup install :
python setup.py install
npm bower
- Grunt :
grunt build
build the code :- compile less files to app/styles/main.css (+ map file in dev mode)
- build html files with JST (app/build/templates.js)
- build js files : requirejs optimisation, minify and uglify (app/buil/prod.js)
-
grunt release
: launchgrunt build
then change entry file in the index for production mode (prod.js) -
grunt dev
: launchgrunt build
then change entry file in the index for development mode
RequireJS Backbone Underscore MarionetteJs
- Rename the config.js.default to config.js then add your specifications (url of the REST server)
- If you setted a reverse proxy, don't forget to include "/portal-core/" in your URL-Rewrite part (example: http://127.0.0.1:6544/portal-core/{R:1})
- Don't forget to remove "bin" folders from hidden segments on IIS (Filtering demands -> Hidden sengments)
You have to configure the development.ini which can be found in the Back folder. You have to enter the siteName parameter which the site name of the local site (### Site name).
Server configuration example : track.int, ecology.track.int, breeding.track.int
Install the portal on the top domain server : track.int
Then, in the development.ini file, uncomment the "parent_domain" parameter and fill it in with the address of the top domain server: track.int.
The application will generate a cookie available for the domain .track.int. The other servers (ecology.track.int & breeding.track.int) will now access the cookie and you will be authenticated on their application.
If the parent_domain variable remains commented, you will only be authenticated on the current domain. (single server architecture as before).
Run pserve development.ini
command in order to launch a Pyramid server.
If pserve fails because it doesn't find the development.ini file, try a python setup.py develop
to avoid targeting the wrong egg.
If you want to avoid Numpy errors fired when launching the server, make sure you have no lib referencing it then restart the whole installation thing.
Natural Solutions (NS) is based upon the collaborative development process of Git/GitHub.
If you want to contribute on this project, please create a new pull request :
- Fork the repository into your own GitHub repository in order to work on this one,
- Then create a new branch first,
- Finally, send a pull request to the main repository when the task is ready for review.
- When the pull request received at least one validation comment from an owner member of the repository, it will be merge to this one.
Thank you!
We have programs for companies that require additional level of assistance through training or commercial support, need special licensing or want additional levels of capabilities. Please visit the Natural Solutions Website for more information about the portal or contact us by email at [email protected].
-
Se rendre dans l'application sécurité depuis le portail
-
Lors du choix du thème pour l'instance, si le thème n'a jamais été créé, alors l'écrire dans le champ text à côté de la sélection de thème.
-
Une fois le thème créé et associé à l’instance, se rendre dans dossier du projet NsPortal, trouver le fichier Front/app/base/home/lyt-tile.js et rajouter la case qui correspond à votre thème créé précédemment. Exemple si le thème se prénomme « CentralMonitoring » alors :
case 'CentralMonitoring':
this.model.set({'icon' : 'reneco-CentralMonitoring'});
break;
Ceci a pour but de définir l’icône créée au préalable dans la rénéco-font
- Se rendre dans le fichier Front/app/styles/ui/_tile.less et ajouter une class avec une variable, ceci représente la couleur de fond qu’aura l’icône, dans notre exemple :
.CentralMonitoring{
background : @CentralMonitoring;
}
- Pour finir, créer la variable et lui associer une couleur dans le fichier Front/app/styles/_theme.less toujours dans notre exemple :
@CentralMonitoring : #4B6099;
- Se diriger à la racine du front du projet, c'est à dire dans le dossier Front et exécuter la commande
grunt release
Cette commande permet de mettre à jour le dossier "build" donc le dossier de prod, celui qui sera lu par le navigateur web
- Vous voilà avec un nouveau thème de créé et vous n'avez pas perdu 1 journée à chercher quelqu'un qui saurait le faire :)
Copyright (c) 2015 Natural Solutions Licensed under the MIT license.