Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brendanmurty/upcomingtasks
A web-based Basecamp 2 client
https://github.com/brendanmurty/upcomingtasks
basecamp javascript php productivity responsive
Last synced: 6 days ago
JSON representation
A web-based Basecamp 2 client
- Host: GitHub
- URL: https://github.com/brendanmurty/upcomingtasks
- Owner: brendanmurty
- License: other
- Created: 2016-02-18T22:55:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T11:34:44.000Z (about 1 year ago)
- Last Synced: 2024-05-01T14:56:50.832Z (7 months ago)
- Topics: basecamp, javascript, php, productivity, responsive
- Language: PHP
- Homepage:
- Size: 1.14 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
- License: license.md
Awesome Lists containing this project
README
UpcomingTasks
=======## About
UpcomingTasks was a free web-based [Basecamp 2](https://basecamp.com/2) client that I developed to easily manage tasks on smaller devices.
Users had the option to upgrade to a Pro account which unlocks [additional features](https://murty.au/brendan/posts/20151007_announcing-upcomingtasks-pro/).
It was created in [Sublime Text](http://www.sublimetext.com/) using the [Basecamp 2 API](https://github.com/basecamp/bcx-api) and hosted by [Digital Ocean](http://digitalocean.com).
The service was online from September 2012 and [retired on 15 November, 2016](https://murty.au/brendan/posts/20161014_farewell-upcomingtasks/).
[![List tasks example](https://github.com/brendanmurty/upcomingtasks/blob/master/images/screenshots/list-tasks.png)](images/screenshots/list-tasks.png) [![Progress page example](https://github.com/brendanmurty/upcomingtasks/blob/master/images/screenshots/progress-list.png)](images/screenshots/progress-list.png) [![User menu example](https://github.com/brendanmurty/upcomingtasks/blob/master/images/screenshots/menu-open.png)](images/screenshots/menu-open.png)
## Why Open Source?
I was inspired by [Brad Frost](https://github.com/bradfrost)'s [TED talk](https://twitter.com/brad_frost/status/476515058738925568) about being open by default. If you haven't seen this talk yet, I'd recommend investing half an hour to [watch the video](https://www.youtube.com/watch?v=7rW9vTrN6OU) and read the [blog post](http://bradfrostweb.com/blog/post/creative-exhaust/).
As I'm self-taught, engaging with the [community](https://twitter.com/brendanmurty/lists/web-design/members), [listening to inspirational people](http://boagworld.com/show) and [reading about new techniques](https://signalvnoise.com/programming) helped me turn my passion in to my career.
I hope an aspiring web developer can learn something new from what I've done here and start their own career. Hopefully I can give back to the community that has taught me so much over the last few years.
## License
You can view the [License](https://github.com/brendanmurty/upcomingtasks/blob/master/license.md) file for rights and limitations when using the code here in your own projects.
The license is based on the [CSS-Tricks License](https://css-tricks.com/license/) which was created by [Chris Coyier](https://github.com/chriscoyier/).
## Installation
Here's the steps that I go through to configure a new UpcomingTasks server on a [Digital Ocean](https://www.digitalocean.com) Ubuntu 14.04 VPS.
### Install required packages
sudo apt-get update
sudo apt-get -y install git apache2 mysql-server libapache2-mod-auth-mysql php5 php5-mysql libapache2-mod-php5 php5-mcrypt php5-cgi php5-curl sendmail### Initialise a Git clone of the code
First you'll need to [configure a SSH key](https://confluence.atlassian.com/bitbucket/set-up-an-ssh-key-728138079.html).
Then you can make a copy of the repository in a suitable directory, such as `/var/www/html`:
git clone git@https://github.com/brendanmurty/upcomingtasks.git .
### Configure application authentication information
cp libs/auth.php.sample libs/auth.php
vim libs/auth.phpUpdate the authentication tokens and login information in this private file.
### Setup the database and create the "users" table
mysql -u root -p
[enter root user password]
create database upcomingtasks;
exit
mysql -u root -p upcomingtasks < scripts/sql/users.sql
[enter root user password]### Configure the server to use the customised ".htaccess" file
sudo cp scripts/server/web-server.conf /etc/apache2/sites-available/000-default.conf
vim /etc/apache2/sites-available/000-default.confUpdate the *ServerName* and *ServerAdmin* values to suit your server and email address.
vim .htaccess
Update the domain references in this file.
sudo service apache2 restart
### Setup the SSL certificate (optional)
If you've setup your Basecamp Integration app to use a HTTPS URL then you'll first need to purchase and [configure an SSL certificate](https://www.digitalocean.com/community/tutorials/how-to-install-an-ssl-certificate-from-a-commercial-certificate-authority) on your server.
sudo cp scripts/server/ssl.conf /etc/apache2/sites-available/default-ssl.conf
vim /etc/apache2/sites-available/default-ssl.confUpdate the domain, admin and SSL path values to suit your information and the locations of your certificate files.
sudo service apache2 restart