Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gauravtiwari/fennec-core
IoT Platform with Dashboard application
https://github.com/gauravtiwari/fennec-core
Last synced: 18 days ago
JSON representation
IoT Platform with Dashboard application
- Host: GitHub
- URL: https://github.com/gauravtiwari/fennec-core
- Owner: gauravtiwari
- Created: 2017-11-15T16:10:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-13T17:26:33.000Z (about 7 years ago)
- Last Synced: 2024-11-25T12:42:04.787Z (28 days ago)
- Language: Ruby
- Size: 1.79 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FENNEC-CORE
Fennec-core is core engine for IoT applications, it includes MQTT broker support,
Dashboard web application to manage devices and projects.* Ruby/Rails version
The software was developed using following versions of Ruby and Rails
ruby 2.4.1p111 (2017-03-22 revision 58053)
Rails 5.1.4
* Other dependencies
Bootstrap v4.0.0-alpha.6
* Database creation
In Mysql run following commands:
CREATE DATABASE fennec_core_development;
CREATE DATABASE fennec_core_test;
To convert the databased to utf8, execute following commands in Mysql:
ALTER DATABASE fennec_core_development CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER DATABASE fennec_core_test CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;And finally don't forget to add access to user fennec to these databases:
GRANT ALL PRIVILEGES ON fennec_core_development.* TO 'fennec'@'localhost';
GRANT ALL PRIVILEGES ON fennec_core_test.* TO 'fennec'@'localhost';
* Database initialization* How to run the test suite
* Services (job queues, cache servers, search engines, etc.)
* Deployment instructions
* ...