Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jomendez/ionic-react-serverless-task-manager
Ionic 4 react + serverless Task manager supercharged
https://github.com/jomendez/ionic-react-serverless-task-manager
Last synced: 6 days ago
JSON representation
Ionic 4 react + serverless Task manager supercharged
- Host: GitHub
- URL: https://github.com/jomendez/ionic-react-serverless-task-manager
- Owner: jomendez
- Created: 2020-05-15T18:08:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T18:13:09.000Z (almost 2 years ago)
- Last Synced: 2024-03-18T05:10:55.985Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 494 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless Task Manager
## How to run the application
## Backend
To deploy an application run the following commands:
```
cd backend
npm install
sls deploy -v
```## Frontend
To run a client application first edit the `task-manager-client/src/config.ts` file to set correct parameters. And then run the following commands
```
cd task-manager-client
npm install
npm run start
```This should start a development server with the React application that will interact with the serverless Task manager application.
# Remove serverless App
`serverless remove --stage dev --region us-east-1`
# Note
If you receive a node error complaining about memory `JavaScript heap out of memory`, you can use the following command to extend the nodejs memory
```
export NODE_OPTIONS=--max-old-space-size=8192
```