An open API service indexing awesome lists of open source software.

https://github.com/dev-ritik/finsights-frontend


https://github.com/dev-ritik/finsights-frontend

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Finsights Frontend
Frontend for the Finsights project written React js, deployed on GitHub pages.

## Development
Use node version 14
```zsh
eval "$(nodenv init -)"
nodenv local 14.18.0
```
## Deploy
### Deploy to Github pages
`npm run deploy`
### Deploy using nginx
- `npm run deploy`
- Ssh to the env and checkout gh-pages branch
- Use this directive in nginx server block

```
location / {
alias /home/azureuser/Finsights-frontend/;
}
```