The cycleatlanta.org is a set of web applications. It's primary function is to collect, organize and publish bike path data from bicyclists.
- cycleatlanta.org/index.html - A static web page shows detailed information about Cycle Atlanta.
- Post back-end webapp - A web application to collect bike path data from bicyclists' mobile applications. This application is compatible with Cycle Tracks based mobile applications:
- Rides webapp - A user interface to see bike path data from bicyclists.
Here are the high-level steps you'll need to take to launch the cycleatlanta.org back-end webapps.
- Create a MySql database and generate tables by running the cyleatlanta sql script.
- Use a PHP and http server (e.g., WAMP, XAMPP)
- Copy
cycleatlanta.org
andinclude
folders to web server'swww
folder - Organize the imports in the
/post_dev/index.php
file based on the 'include' folders' location. You might need to use full path if you are using windows. - For the Rides web app, organize the imports in the
rides/getData.php
- Set your database credentials into
include/Database_dev.php
- Restart the server
- The post url should be
localhost:port/post_dev/index.php
- The information web page's url should be
localhost:port/index.html
- The Rides webapp's url shoud be
localhost:port/rides/index.php