Skip to content

Commit

Permalink
Release 0.1 Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
dkapila authored Jan 28, 2022
2 parents d507a5b + e112afc commit 927ab86
Show file tree
Hide file tree
Showing 40 changed files with 21,009 additions and 2 deletions.
37 changes: 37 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
'airbnb-typescript',
'plugin:import/typescript',
],

parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 13,
sourceType: 'module',
},
plugins: [
'react',
'@typescript-eslint',
],
rules: {
'react/function-component-definition': [
2,
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
},
};
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_STORE
.vscode
dist/
node_modules/
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
# Craft-SightPortal
A Craft extension to explore and search documents
# Sight Portal

A Craft Extension to explore and search your documents.

## Run this extension

For instructions how to get started and use this extension, visit [Sight Portal](https://dharam.is/Sight-Portal).

## Building

Simply run `npm install` and then `npm run build` to generate the .craftX file which can be installed.
You can use `npm run dev` to test and debug in your local environment.

## Feedback

If you face any issues, or have questions, reach out to me on [Twitter](https://twitter.com/dharamkapila), or by creating an issue on Github. You can also ping me in the [Craft Slack forum](https://craft.do/community).
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "Sight Portal",
"fileName": "craft-sight-portal",
"author" : "Dharam Kapila",
"authorEmail" : "[email protected]",
"description" : "A Craft Extension to explore and search your documents",
"id": "com.craft.sightportal",
"api": "0.0.4",
"main": "index.html"
}
Loading

0 comments on commit 927ab86

Please sign in to comment.