Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bkegley/luminate
https://github.com/bkegley/luminate
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bkegley/luminate
- Owner: bkegley
- License: mit
- Created: 2019-12-15T01:11:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T05:26:23.000Z (over 1 year ago)
- Last Synced: 2024-08-01T19:53:35.317Z (3 months ago)
- Language: TypeScript
- Size: 22.5 MB
- Stars: 20
- Watchers: 2
- Forks: 5
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Getting started: Docker
**Disclaimer: Not currently working**
Having issues getting this up and running with multiple environments. Currently to get a local dev frontend environment with hot reloading run the following:```sh
docker-compose \
-f docker-compose.yml \
-f docker-compose.prod.yml up -d && \
docker-compose stop app && \
yarn workspace @luminate/app run develop -p 8001
```Create a volume for persistent data:
`docker volume create --name=mongo`Build images:
`docker-compose build`Run application:
`docker-compose up -d`## Getting started: Local
Run the following commands in this order.
- `yarn`
- `yarn build:utils`### In 1 terminal
- `yarn develop:services`
### In another terminal
- `yarn develop:gateway`
- Run an instance of a mongo server## Contributing
- Fork
- Clone your fork `[email protected]:/luminate.git`
- CD to your project `cd luminate`
- Set your upstream `git remote add upstream [email protected]:bkegley/luminate.git`
- Create a new branch `git checkout -b awesomeBranch`
- Push to your local branch `git push -u origin awesomeBranch`