An open API service indexing awesome lists of open source software.

https://github.com/romaklimenko/core

⚛ Sitecore cross platform desktop application. Runs on Mac, Windows and Linux.
https://github.com/romaklimenko/core

Last synced: 10 months ago
JSON representation

⚛ Sitecore cross platform desktop application. Runs on Mac, Windows and Linux.

Awesome Lists containing this project

README

          

# ⚛ May the Core be with you

[![Build Status](https://travis-ci.org/romaklimenko/core.svg?branch=master)](https://travis-ci.org/romaklimenko/core)

Core is a Sitecore cross platform desktop application. It runs on Mac, Windows and Linux. https://vimeo.com/152064489

Mac OS X:

Windows:

## Under the hood

Here are main technologies on which Core is based on:
* [Electron](http://electron.atom.io/)
* [React](https://facebook.github.io/react/)
* [Redux](http://redux.js.org/)

But I didn't intend to use as many buzzwords as possible. I take simplicity, ease of adding new features and supportability at the first place. This is why there is no TypeScript, JSX and Babel traspilers at the current stage of the project.

## Setting up Sitecore

Connection and configuration management is not implemented yet. It is expected that Sitecore instance is available at http://sitecore.api/ and Sitecore Item Web API has setup like this:

In Sitecore.ItemWebApi.config, enable Sitecore Item Web API and allow anonymous access:
```xml

StandardSecurity
ReadOnly
true

```

In Web.config, enable CORS:
```xml








```

## Build, test and run

There are only two global npm dependencies:

```
> npm i -g gulp
> npm i -g browserify
```

When you have gulp and browserify installed globally, install all the development dependencies:

```
> npm i
```

Build:
```
> node_modules/gulp/bin/gulp.js
```
or, if you have `gulp` installed globally:
```
> gulp
```

Run tests:
```
> npm test
```

Run application:
```
> npm run
```

## Help wanted

I will appreciate any feedback about:
* Current application architecture
* New features
* Bugs