View detailed information from weather stations located all around Slovenia.
This project is made with loopback.io: http://loopback.io
First clone the repo:
git clone [email protected]:TFaga/weather-stations.git
Then install development dependencies:
npm install && bower install
Set up a database of your choice (PostgreSQL, MySQL, Oracle, MSSQL or MongoDb) and set up the apropriate connection parameters in the server/datasources.json
. For instance to set up an in-memory db use the following:
"db": {
"name": "db",
"connector": "memory"
}
The required settings for a specific database can be found here.
Run database migrations:
node server/scripts/migrate
Seed initial data to the database:
node server/scripts/seed
To start the application:
grunt serve
To run tests:
grunt test
To build the application:
grunt build
Recent changes can be viewed on Github on the Releases Page
See the contributing docs
When submitting an issue, please follow the guidelines.
When submitting a bugfix, write a test that exposes the bug and fails before applying your fix. Submit the test alongside the fix.
When submitting a new feature, add tests that cover the feature.
MIT