Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/celery/celeryproject
The official Celery Project website
https://github.com/celery/celeryproject
celeryproject-website django
Last synced: 8 days ago
JSON representation
The official Celery Project website
- Host: GitHub
- URL: https://github.com/celery/celeryproject
- Owner: celery
- License: other
- Created: 2012-10-12T14:47:52.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-08-02T17:19:28.000Z (over 5 years ago)
- Last Synced: 2024-10-30T00:00:22.593Z (17 days ago)
- Topics: celeryproject-website, django
- Language: CSS
- Size: 768 KB
- Stars: 19
- Watchers: 17
- Forks: 11
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Celeryproject website
=====================The official Celery Project website
#### Required Django apps ####
- sorl-thumbnail### How to run celeryproject in local ###
The project contains a requirements.txt file, so it's enough that you create a virtual env and you install the requirements using pip
```
pip install -r requirements.txt
```After that make sure to create a dev.py file in the settings folder, you can use as template the dev.py.sample, and just fill in your local database settings.
Once done you can run the Django syncdb command and feel free to create an admin user.```
python manage.py syncdb
```Once this is done the website is ready to run, but if you want some content coming from the celeryproject website you can load the sample data from the fixtures by running:
```
python manage.py loaddata sampledata.json
```Feel free to contribute or propose new features/content for the website.