https://github.com/rxstack/to-do
https://github.com/rxstack/to-do
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rxstack/to-do
- Owner: rxstack
- License: mit
- Created: 2019-01-22T13:30:31.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T08:17:09.000Z (about 7 years ago)
- Last Synced: 2025-05-29T15:37:46.576Z (10 months ago)
- Language: TypeScript
- Size: 42 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RxStack Skeleton Application
[](https://codeclimate.com/github/rxstack/skeleton/maintainability)
[](https://codeclimate.com/github/rxstack/skeleton/test_coverage)
[](https://travis-ci.org/rxstack/skeleton)
> a fully-functional skeleton application that you can use for your new applications.
It comes pre-configured with the following rxstack modules/components:
- [@rxstack/async-event-dispatcher](https://github.com/rxstack/rxstack/blob/master/packages/async-event-dispatcher)
- [@rxstack/configuration](https://github.com/rxstack/rxstack/tree/master/packages/configuration)
- [@rxstack/exceptions](https://github.com/rxstack/rxstack/tree/master/packages/exceptions)
- [@rxstack/core](https://github.com/rxstack/rxstack/blob/master/packages/core)
- [@rxstack/express-server](https://github.com/rxstack/rxstack/tree/master/packages/express-server)
- [@rxstack/socketio-server](https://github.com/rxstack/rxstack/tree/master/packages/socketio-server)
For more details please visit the [official documentations](http://rxstack.io).
## Docker
This complete stack run with docker and [docker-compose](https://docs.docker.com/compose/).
### Installation
- Create a `.env` from the `.env.dist` file. Adapt it according to your application
```bash
$ cd path_to_app/docker_app
```
- Build/run containers
```bash
$ docker-compose -f dev.yml up -d // development
$ docker-compose -f prod.yml up -d // production
```
- Install npm dependencies and run the application
```bash
$ docker-compose -f dev.yml exec application bash // get inside app container
$ npm install
$ npm test
$ npm run dev
```
Enjoy!
## License
Licensed under the [MIT license](LICENSE).