Skip to content

Latest commit

 

History

History
76 lines (66 loc) · 2.05 KB

File metadata and controls

76 lines (66 loc) · 2.05 KB

Cortex Admin

Cortex Admin is the default UI for Cortex, written using AngularJS.

Getting Started

Install NodeJS (nvm and Homebrew are both good options)

Install node dependencies for the development environment

$ npm install -g bower grunt-cli karma

Clone the repository, download project dependencies and build Cortex Admin

$ git clone git@gitsum.careerbuilder.com:talent-solutions/cortex-admin.git cortex-admin
$ cd cortex-admin
$ npm install
$ bower install
$ grunt build

Tada! Tests should be run, templates compiled and you should now be able to run the admin by accessing build/index.html from your web brower.

Project Structure

.src
├── app
│   ├── controllers
│   │   ├── admin
│   │   │   ├── media
│   │   │   ├── organizations
│   │   │   ├── posts
│   │   │   └── tenants
│   │   └── users
│   ├── directives
│   ├── resources
│   ├── services
│   └── views
│       ├── admin
│       │   ├── media
│       │   ├── organizations
│       │   ├── posts
│       │   └── tenants
│       └── users
├── assets
│   └── admin
├── common
├── sass
│   └── states
├── spec
│   ├── controllers
│   │   └── admin
│   │       ├── media
│   │       ├── organizations
│   │       └── tenants
│   └── resources
└── vendor
    ├── angular-bootstrap-nav-tree
    └── redactor

Resources