https://github.com/toomanybees/queer-scouts-website
Website for queerscouts.nyc
https://github.com/toomanybees/queer-scouts-website
Last synced: 3 months ago
JSON representation
Website for queerscouts.nyc
- Host: GitHub
- URL: https://github.com/toomanybees/queer-scouts-website
- Owner: TooManyBees
- Created: 2019-07-16T22:33:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-18T20:45:54.000Z (about 2 years ago)
- Last Synced: 2026-02-12T09:54:14.778Z (4 months ago)
- Language: HTML
- Size: 4.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# queerscouts.nyc website
Website for www.queerscouts.nyc. The very simple stack is:
* [Ruby](https://ruby-doc.org/)
* [Sinatra](http://sinatrarb.com/intro.html)
* [Thin](https://github.com/macournoyer/thin)
* [Nginx](http://nginx.org/en/docs/)
## Tasks done
1. Pulling events from Google calendar
## Needs review
1. Mission statement and/or short description
2. Contact page contents
3. Code of Conduct
## Unimplemented/ideas
1. an archive of past events/writeups?
2. an archive of den meeting notes?
# Maintenance
## DEPLOY!
```bash
rsync -azk --delete --exclude-from '.rsyncignore' $(pwd)/ "$USER@$HOST:$DESTINATION"
```
## START, STOP, GO AGAIN!
```bash
thin -S tmp/thin.sock --tag queerscouts $([[ "$RACK_ENV" == "production" ]] && "-d") start
```
```bash
thin stop
```
```bash
thin restart
```