Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blueberryapps/avast-stack
https://github.com/blueberryapps/avast-stack
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/blueberryapps/avast-stack
- Owner: blueberryapps
- Created: 2017-03-14T18:30:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T18:15:56.000Z (almost 2 years ago)
- Last Synced: 2024-04-09T21:49:02.470Z (7 months ago)
- Language: JavaScript
- Size: 547 KB
- Stars: 0
- Watchers: 30
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Avast Stack
## Getting started
```
git clone [email protected]:blueberryapps/avast-stack.git
cd avast-stack
yarn install
yarn start
```## Build process
```
yarn build // development build
yarn build:prod // production build
```## API
```
BASE_URL=http://some.url/endpoint yarn start
```will tell application to use custom endpoint for API
when you are doing production build, you must specify this option too.
```
BASE_URL=http://some.url/endpoint yarn build:prod
```## Testing
Run linter: `yarn eslint`
Run jest: `yarn jest`
Run jest in watch mode: `yarn jest -- --watch`
Run all test at once `yarn test`