Set your scholarly works free
Code base of Curate Science's flagship product Curate Scholar (release notes), an author page app that makes scholarly works 10x more user-friendly to access and consume (think Google Scholar substantially enhanced in 15 unique ways; see our release 0.4.0 video for a demo of new features).
Curate Scholar is part of broader Curate Science platform, an integrated system and product suite of tools to curate the transparency and credibility of research (for a broad overview, see this interactive diagram). For more details, see our meta-scientific theoretical framework that guides the implementation of our integrated system. See below for current features in development (1-year road map) and upcoming features (3-year road map (from 2018)).
Curate Science is a nonprofit tech startup whose mission is to boost QUALITY in science by developing transparency apps for scientists.
Current value: USD$500 (March 2020). Total current escrow $1,000. (more coming soon.)
To identify talent to expand our team, we’re running a monthly bug bounty program. Current top-priority issues are worth a specific # of points to fix (see issues under "Improved demoability" milestone). Earn cash proportional to the points earned, shared among contributing programmers (at the end of the month). To incentivize both individual and communal productivity, a larger proportion of monthly escrow is unlocked for larger total points collectively earned by the team. For example, if dev#1 earns 270 points, and dev#2 earns 750 points, the total >1,000 points collectively earned unlocks a larger chunk of the total monthly escrow amount available (the maximum amount is unlocked if all issues are fixed).
Curate Science is a web application written in Python 3 using the Django framework 2.1. with PostgreSQL 9.6, running on Google App Engine Standard Environment. The master branch is continuously deployed to production with Travis CI. The application features a REST API for interacting with the curated data programmatically.
- Entity models are in
curate/models.py
(entity-relationship diagram (v0.3.0)) - REST API view controllers use Django REST Framework and are in
views/api.py
- REST API model serializers are in
curate/serializers.py
- HTML view controllers are in
curate/views.py
- HTML templates use the Django template engine and are in
templates/
- URL routes are in
curate_science/urls.py
- JS, CSS, and image files go in
static/curate/
- Application configurations are in
curate_science/settings.py
- GCP documentation
- Django documentation
- React-Router documentation
- Material UI (React component library) documentation
For more detailed instructions on how to setup a local instance of the app, see here (see also here).
To set up the app locally:
- Clone this repository
- Install Python >= 3.6
- Install PostgreSQL >= 9.4 (command may be sql or psql depending on install method)
- Create a .env file and set the environment variables
DB_USER
,DB_PASS
, andSECRET_KEY
- Create a superuser to access Django admin:
python manage.py createsuperuser
and follow prompts
CREATE DATABASE curate;
CREATE USER [DB_USER] WITH PASSWORD '[DB_PASS]';
GRANT ALL PRIVILEGES ON DATABASE curate TO [DB_USER];
ALTER USER [DB_USER] CREATEDB;
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver_plus
python manage.py test
Ensure Postgres is running.
python manage.py runserver_plus
# In a new terminal (to compile JS bundle(s) and HTML)
yarn start
App should be running at localhost:8000
.
Django admin should be available at localhost:8000/admin
.
For staging: export GOOGLE_CLOUD_PROJECT=curate-science-staging-2
(For more realistic testing of performance, user-friendliness, and general feel/esthetic, please contact us at [email protected] to be granted access to a de-identified version of our production DB, which you can import into your local environment.)
For production: export GOOGLE_CLOUD_PROJECT=curate
Then run python manage.py migrate
Then don’t forget to reset the env var: export GOOGLE_CLOUD_PROJECT=
(DB_NAME is set conditionally, based on the value of GOOGLE_CLOUD_PROJECT, here)
Curate Science source code is licensed under an open-source MIT license for all personal, educational, research, and other open source applications. A commercial license is required for all commercial applications. Please contact [email protected] for more information about our commercial license.
- Core functionality
- Create a new article, add information to all fields, including uploading multiple figures simultaneously via drag-and-drop
- Save a new article
- All fields can successfully save information
- Canceling unsaved information prompts warning dialog
- Edit an article
- All fields can successfully be edited, including deleting a key figure (admin only)
- Delete an article (admin only)
- Link an existing article to an author page (e.g., https://curate-science-staging-2.appspot.com/app/author/etienne-p-lebel)
- Link that same article to a (different) co-author's page (admin only)
- Ensure article page works (e.g., https://curate-science-staging-2.appspot.com/app/article/57)
- Ensure search/search results page works (e.g., https://curate-science-staging-2.appspot.com/app/search/?q=disgust)
- Ensure Browse/recent page works: https://curate-science-staging-2.appspot.com/app/recent
- Ensure filtering and sorting works (e.g., show only "Replication" articles)
- Create a new author page (admin only)
- Invite/create a new user (admin only)
- Full-screen mode functionality (e.g., author page with lots of embedabble full-screen PDF/HTML articles: https://curate-science-staging-2.appspot.com/app/author/etienne-p-lebel)
- PDF: Ensure a supported embeddable full-text PDF article activates full-screen icon AND is displayed in right-panel embed viewer (e.g., https://etiennelebel.com/documents/lebeletal(2018,ampss)a-unified-framework-to-quantify-the-credibility-of-scientific-findings.pdf)
- HTML: Ensure a supported embeddable full-text HTML article activates full-screen icon AND is displayed in right-panel embed viewer (e.g., https://www.frontiersin.org/articles/10.3389/fpsyg.2017.01004/full)
- Author page publication list external embedding
- Ensure embedding
<script src="https://curate-science-staging-2.appspot.com/author-embed/etienne-p-lebel.js" async></script>
loads and displays relevant author page publication list, i.e., https://etiennelebel.com/author/etienne-p-lebel-EMBED-AUTHOR-PAGE-from-staging.html)
- Ensure embedding
- Current focus (1-year road map)
- Features and improvements in active development: See issues under "Improved Demoability" milestone
- Next batch of features to be implemented: See issues under "Public launch (author page)" milestone
- Upcoming features (3-year road map): See issue #52