Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appsynergy/microjs
https://github.com/appsynergy/microjs
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/appsynergy/microjs
- Owner: AppSynergy
- Created: 2016-01-26T17:49:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-26T17:50:34.000Z (almost 9 years ago)
- Last Synced: 2023-05-13T03:10:18.511Z (over 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Install global packages
- `npm i knex -g`
- `npm i nodemon -g` *(optional, but recommended for hacking)*## Install local packages
`npm install`
## Download front-end dependencies
`bower install`
## Database setup
- Create a MySQL Database
- Edit `knexfile.js`, adding the correct database name and authorization.## Run migrations
`knex migrate:latest`
## Populate the database
>> TODO
## Build the `dist` directory
`gulp build`
## Run the client application
`nodemon` or `node src/client.js`
## Run some microservices
`nodemon src/microservices/server.js`