Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kalyan02/dayone
Python/Django server to publish to web from your Classic Dayone journal directly
https://github.com/kalyan02/dayone
cms journal-management
Last synced: 17 days ago
JSON representation
Python/Django server to publish to web from your Classic Dayone journal directly
- Host: GitHub
- URL: https://github.com/kalyan02/dayone
- Owner: kalyan02
- License: gpl-2.0
- Created: 2013-08-17T15:15:48.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-03-31T14:39:13.000Z (over 1 year ago)
- Last Synced: 2024-08-08T00:44:05.207Z (4 months ago)
- Topics: cms, journal-management
- Language: Python
- Homepage:
- Size: 252 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - kalyan02/dayone - Python/Django server to publish to web from your Classic Dayone journal directly (Python)
README
Dayone web journal
==================Blog to the web directly from within your Dayone journal app.
Login with your dropbox account and simply add #public tag to your journal entry to publish it to the web.
You can also make anonymous blog posts by using #anonymous tag.Note: The tags are configurable from the edit profile interface
### Demo - coming soon
[http://Dayone.in](http://dayone.in)
## Prerequists
* Python
* Celery
* Redis
* (Mysql or sqlite)
* python packages in requirements.txt## Setup
Rename `do/private_config-sample.py` to `do/private_config.py`. This is your private configuration file for setup.
Fill in the following information* `DROPBOX_APP_ID` - Your Dropbox API key
* `DROPBOX_API_SECRET` - API secret
* `SECRET_KEY` - Django app secret key for hashing cookies
* `AUTO_ADMINS` - Admin username/password information for automatically creating admin loginInstall required packages using virtualenv
* run `$ virtualenv ENV`
* run `$ source ./ENV/bin/activate`
* run `$ pip install -r requirements.txt`## How to run
* install and start redis server
* run `./migrate.sh` to setup databases
* run `./celery-worker.sh` to start celery for background processing## Todo
* Support adding of permalink back to the content for easy reference
* implement user profiles, pagination for dayroll, public posts
* Improve the UI
* Implement data update scheduler for all users in the system## License
Please refer the `LICENSE` file.