/express-admin-examples

Examples repository for Express Admin

Primary LanguageJavaScriptMIT LicenseMIT

#Express Admin Examples

This is the examples repository for Express Admin

Other locations:

##Install

$ git clone https://github.com/simov/express-admin-examples
$ cd express-admin-examples
$ npm install

##Create the schema and the test user

CREATE SCHEMA `express-admin-examples` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ;
CREATE USER liolio@localhost IDENTIFIED BY 'karamba' ;
GRANT ALL ON `express-admin-examples`.* TO liolio@localhost ;

##Import the schema and the test data

$ mysql -p --user=root 'express-admin-examples' < fixtures/examples/schema.sql
$ mysql -p --user=root 'express-admin-examples' < fixtures/examples/insert.sql

##Run the Admin

$ admin examples/config/

##Navigate to http://localhost:3000 Username: admin Password: 11aaAA