https://github.com/zequez/ggfilter-server
Rails server of GGFilter
https://github.com/zequez/ggfilter-server
Last synced: about 1 month ago
JSON representation
Rails server of GGFilter
- Host: GitHub
- URL: https://github.com/zequez/ggfilter-server
- Owner: Zequez
- Created: 2021-03-24T17:33:12.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-04T07:30:47.000Z (about 2 years ago)
- Last Synced: 2025-01-21T01:41:39.226Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 442 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GGFilter
⚠ This project is outdated and unmaintained; server is down
Along with this repo there was the [ggfilter-client](https://github.com/zequez/ggfilter-client) and the [ggfilter-scrapers](https://github.com/zequez/ggfilter-scrapers).
Honestly I'm more interested in the decentralized web and JAMStack architecture
nowdays. And I would probably move away from RoR if done again, maybe even
a lambda function would do if a backend was neccesary, it is literally
a single endpoint for all the filters.
## Deployment
After deploying a new client to the Bitbucket repo run the following to update this
project dependencies:
```
bundle update ggfilter_client
```
The same with the scrapers
```
bundle update scrapers
```
Or you can run this task that automatically does a commit too:
```
rake dist:update_deps
```
And to deploy to the server you should run
To deploy to the server just commit the latest changes and:
```
git push heroku master && heroku run rake db:migrate && heroku restart
```
You can just run a Rake task that does everything (it also run `dist:update_deps`):
```
rake dist:deploy
```