Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datasektionen/dbuggen
Datasektionens tidning, fast på webben!
https://github.com/datasektionen/dbuggen
jekyll podcast sass
Last synced: 1 day ago
JSON representation
Datasektionens tidning, fast på webben!
- Host: GitHub
- URL: https://github.com/datasektionen/dbuggen
- Owner: datasektionen
- Created: 2015-08-05T09:36:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-23T19:51:47.000Z (1 day ago)
- Last Synced: 2025-01-23T20:30:33.541Z (1 day ago)
- Topics: jekyll, podcast, sass
- Language: HTML
- Homepage: https://dbu.gg
- Size: 38.4 MB
- Stars: 1
- Watchers: 16
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dbuggen
Datasektionens tidning, fast på webben! Även sektionens mest seriösa repo på github.dbu.gg är en jekyll-app. För att kunna deployas på dokku är den dock fulhackad till en Rack-app.
### Setup
Install ruby and ruby-dev
```
$ sudo apt-get install ruby
$ sudo apt-get install ruby-dev
```Install bundler
```
$ gem install bundler
```Install gems
```
$ bundle
```Run rake to start a local development server
```
$ rake
```Site is now live at `localhost:9000`
### Deploying
dbuggen is hosted on datasektionens dokku server. To deploy, first ask someone important to add your ssh key in the right place. Then, push to the remote `git push [email protected]:dbuggen` to deploy. Make sure to also push to the master branch of this repo to keep dokku and Github in sync, preventing merge conflicts.Here's a bunch of other, maybe relevant, commands
```sh
# shows a list of commands
ssh [email protected]# Other executable commands:
ssh [email protected]
# Ex: show dbuggen status
ssh [email protected] ps:report dbuggen
# Ex: see logs for dbuggen
ssh [email protected] logs dbuggen
# Ex: see logs as new information comes in
ssh [email protected] logs dbuggen -t
```