- JavaScript 76%
- Handlebars 14%
- HTML 7.1%
- CSS 2.9%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
|
||
| .github/workflows | ||
| app | ||
| config | ||
| public | ||
| tests | ||
| vendor/shims | ||
| wiki | ||
| .editorconfig | ||
| .ember-cli | ||
| .eslintignore | ||
| .eslintrc.js | ||
| .gitattributes | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc.js | ||
| .stylelintignore | ||
| .stylelintrc.js | ||
| .watchmanconfig | ||
| buildDeploy.yml | ||
| ember-cli-build.js | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| testem.js | ||
kursausschreibung 3.6.4
Documentation
Go to the FBI GitBook docs
How to implement in your page?
Configuration (appconfig, settings, locale)
- appconfig: The basic configuration for the module must be stored in appconfig. Example:
apiUrl, oauthUrl, instanceId, clientId, applicationScope - settings: In this file you will find all settings for the module.
- locale: In the 'locale' folder you will find every translation for the module that does not come from Evento (e.g. labels, status, process...).
Builds
You can download releases on the releases page and the latest build of the module here: kursausschreibung.zip. To use the module you first have to configure it.
Integration
For the integration into an html page you need a simple html configuration in header and body of the page in which you want to publish the module. Please see section MODULE head configuration and MODULE MAIN APPLICATION in index.html.
If you want to be sure that after authentication by the module the correct address is always used use OPTION REDIRECT in the index.html GoTo. Please put script element between head and body of main page (load faster).
For Development
Prerequisites
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
Installation
git clone https://github.com/bkd-mba-fbi/kursausschreibung.gitcd kursausschreibungnpm installcd node_modules/uikitnpm installnpm run scope(make sure node is up to date)
Problem npm install
For one reason or another, some people can't connect to the registry via HTTPS. This can be fixed by setting the registry to use HTTP instead:
npm config set registry http://registry.npmjs.org/npm config set strict-ssl false
Running / Development
ember serve- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Code Generators
Make use of the many generators for code, try ember help generate for more details
Running Tests (tests not yet implemented)
ember testember test --server
Linting
npm run lintnpm run lint:fix
Building
ember build(development)ember build --environment production(production)