https://github.com/schollz/anonfiction
A CMS for reading and writing stories in a online magazine format. :book:
https://github.com/schollz/anonfiction
cms content-management content-management-system stories website writing
Last synced: 6 months ago
JSON representation
A CMS for reading and writing stories in a online magazine format. :book:
- Host: GitHub
- URL: https://github.com/schollz/anonfiction
- Owner: schollz
- License: mit
- Created: 2017-11-15T12:55:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-04T14:18:02.000Z (over 6 years ago)
- Last Synced: 2025-04-22T10:44:02.358Z (6 months ago)
- Topics: cms, content-management, content-management-system, stories, website, writing
- Language: Go
- Homepage:
- Size: 7.63 MB
- Stars: 17
- Watchers: 6
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A CMS for reading and writing stories in a online magazine format.
This repository powers an online magazine where regular people contribute sincere and honest nonfiction stories. It basically contains a fully-fledged CMS (content-management system) with passwordless authentication. I needed something similar to Wordpress and Ghost, but I wanted more control in the layout and the interface so I decided to write it myself.
*anonfiction* is written in Go with the [Gin web framework](https://github.com/gin-gonic/gin) and the CSS framework is in [Tachyon](http://www.tachyons.io). The database uses [BoltDB via @asdine's storm interface](https://github.com/asdine/storm) and my simple [schollz/jsonstore](https://github.com/schollz/jsonstore). All changes to every story are saved via [schollz/versionedtext](github.com/schollz/versionedtext). The built-in editor comes from [basecamp/trix](https://github.com/basecamp/trix).
Please fork this project, steal ideas from it, contribute to it, love it, or hate it.
## Why?
I decided to make an effort to make a place on the Internet that is more positive and reflective. This place would be where you can present your own story, anonymously and sincerely. A place where you don't have to be an MFA to present a good story. I wrote [a blog post with more of my reasoning](https://schollz.github.io/anonfiction).
## Install
First install the dependencies using Go:
```
go get -u -v github.com/schollz/anonfiction
```Then `cd` into the `$GOPATH` and build:
```
cd $GOPATH/src/github.com/schollz/anonfiction
go build
./anonfiction
```The passwordless login requires an email server in production, but it is disabled by default (so anyone can login to anything). If you'd like to use it, I suggest getting [mailgun](https://www.mailgun.com/).
## Contributing
Pull requests are welcome. Feel free to...
- Revise documentation
- Add new features
- Fix bugs
- Suggest improvements## License
MIT