https://github.com/ympons/flasher
Small flash-cards website for practicing computer science concepts
https://github.com/ympons/flasher
computer-science flashcards golang gorilla pongo2
Last synced: 2 months ago
JSON representation
Small flash-cards website for practicing computer science concepts
- Host: GitHub
- URL: https://github.com/ympons/flasher
- Owner: ympons
- Created: 2017-04-20T08:15:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-03T02:12:12.000Z (over 7 years ago)
- Last Synced: 2025-04-11T18:21:29.149Z (6 months ago)
- Topics: computer-science, flashcards, golang, gorilla, pongo2
- Language: HTML
- Homepage:
- Size: 2.17 MB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flasher
A golang implementation of the flash cards site [jwasham/computer-science-flash-cards](https://github.com/jwasham/computer-science-flash-cards) for practicing computer science concepts.## Demo
Check the running application [here](https://flashergo.herokuapp.com).
```
Username: admin
Password: admin
```## Built with
- Golang
- Gorilla Toolkit: gorilla/mux, gorilla/session, gorilla/context
- flosch/pongo2: a Django-syntax like templating-language
- SQLite## Running Locally
Make sure you have [Go](http://golang.org/doc/install) installed.
```sh
$ go get github.com/ympons/flasher
$ cd $GOPATH/src/github.com/ympons/flasher
$ PORT=5800 $GOPATH/bin/flasher
```Your local copy should now be running on [localhost:5800](http://localhost:5800/). Use `admin` as username and password to login to the website.