Skip to content

Commit

Permalink
feat: added initial files
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuslbenachio committed May 3, 2022
1 parent c5b62ae commit 839e31b
Show file tree
Hide file tree
Showing 623 changed files with 74,908 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
Binary file added .github/main-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Linter and Tests

on: push

jobs:
linter_and_tests:
name: Linter and Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Install Project Dependencies
run: npm install

- name: Run build
run: npm run build

- name: Run linters
run: npm run linter

- name: Run tests
run: npm run test
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Logs
*.log

# Runtime data
pids
*.pid
*.seed
.DS_Store
.next

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Dependency directory
# Deployed apps should consider commenting this line out:
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
node_modules
.settings
newrelic_agent.log

*.db

__build__*
build
build-tsc
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
save-prefix=""
engine-strict=true
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"recommendations": [
"aaron-bond.better-comments",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"orta.vscode-jest",
"dbaeumer.vscode-eslint"
]
}
53 changes: 53 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
// disables "File is a CommonJS module; it may be converted to an ES6 module":
"javascript.suggestionActions.enabled": false,

// custom words in order for the "Code Spell Checker" extension not to show warnings:
"cSpell.words": [
"antv",
"armv",
"autofills",
"autosend",
"bodec",
"Brotli",
"browserslist",
"bucketdata",
"bytecode",
"camelcase",
"clonedeep",
"commitlint",
"Crosshairs",
"denylist",
"distro",
"doesn",
"ecmaversion",
"eqeqeq",
"esbuild",
"fontawesome",
"hoverable",
"isobjectlike",
"IURL",
"linuxstatic",
"Lucida",
"onentry",
"outfile",
"Parens",
"parseable",
"Preprocesses",
"raspberrypi",
"rcompare",
"rerender",
"respawn",
"rpio",
"svgr",
"swaptotal",
"swapused",
"systeminformation",
"tago",
"tagoio",
"TCORE",
"tcoreignore",
"testid",
"tinycolor"
],
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 TagoIO
Copyright (c) 2022 Tago LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# TagoCore - Open Source ("TCore - OSS")

## The Repository

This repository ("`TCore - OSS`") is where we (TagoIO) develop the [TagoCore](https://tagocore.com) product together with the community. Not only do we work on code and issues here. This source code is available to everyone under the standard [MIT license](https://github.com/tago-io/tcore/blob/main/LICENSE).

## TagoCore

<p align="center">
<img alt="TagoCore in action" src="./.github/main-screenshot.png">
</p>

[TagoCore](https://tagocore.com) is a distribution of the `TCore - OSS` repository with TagoIO-specific customizations released under a copyright license of [TagoIO](https://tago.io).

[TagoCore](https://tagocore.com) is a free, fast, and open-source IoT platform for edge computing that you can use to parse, and analyze the data from your devices!

TagoCore is updated monthly with new features and bug fixes. You can download it for Windows, macOS, and Linux on [TagoCore's website](https://tagocore.com/#download).

## Contributing

There are many ways in which you can participate in this project, for example:

* [Submit bugs and feature requests](https://github.com/tago-io/tcore/issues), and help us verify as they are checked in
* Review [source code changes](https://github.com/tago-io/tcore/pulls)

## Feedback

* Ask a question on [Stack Overflow](https://stackoverflow.com/questions/tagged/tcore)
* Upvote [popular feature requests](https://github.com/tago-io/tcore/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request+sort%3Areactions-%2B1-desc)
* [File an issue](https://github.com/tago-io/tcore/issues)

## License

Copyright (c) Tago LLC. All rights reserved.

Licensed under the [MIT](LICENSE) license.
4 changes: 4 additions & 0 deletions data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"slug": "tcore",
"name": "TCore"
}
Loading

0 comments on commit 839e31b

Please sign in to comment.