https://github.com/dev-ritik/finsights-frontend
https://github.com/dev-ritik/finsights-frontend
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dev-ritik/finsights-frontend
- Owner: dev-ritik
- Created: 2021-10-10T11:29:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-11-30T09:23:09.000Z (7 months ago)
- Last Synced: 2025-12-02T14:17:34.298Z (7 months ago)
- Language: JavaScript
- Homepage: https://finsights.ml/
- Size: 15.2 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
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/;
}
```