This template is actually a queuing system that is used by Berea College's Advancement Office. The Advancement Office uses this application to gather request and assign employees to the incoming request; however, due to the specific nature of the application we decided to open source the project as a queuing system. This queue template will provide programmers with a strong back bone for developing their own application in flask.
The intial step of setting up a development environment is choosing the appropriate tool to complete the application setup. This application requires you to have a linux environment specifically an Ubuntu. However, if you are working out of a windows operating system during development we would recommend you use cloud9
As mentioned above that cloud9 is the preferred tool for our software team while developing and debugging code. However, if you are new to cloud9, they recently started requiring credit card information to create an account. Therefore, you may not want to use cloud9 as your development environment.
Creating a workspace with access to bitbucket
After you create and log into your cloud9 account, select the tab that says wordspaces. This will lead you to an option to create a new workspace. Go ahead an add a name and description for the workspace.
Note: The default for the workspace is to be public, it's important to NOT change this default option. The way that our system works is that it creates a virtual environment for the application to run on. The virtual environment requires the use of ports in order to access the application. If you make the workspace private, it can block these ports so that they can not be accessed. There may be a way around this; however, we just find it easier if you let the workspace be public.
Next, you will want to automatically clone your this repo into your workspace. You can do this in the Clone from Git or Mercurial URL section. You do this by adding your git URL into this section:
- Note: You can either choose to use HTTPS or SSH protocol, just make sure to copy the correct URL for your decision into this input.
For Example:
git@bitbucket.org:<username>/<name_of_Repo>.git
If you are uncertain what your git URL is you can find it at the top of the bitbucket page if you click the clone option.
Note: If you copy and paste this line make sure to remove the
git clone
at the front in order to ensure you only get the URL.
After you have entered in the URL, the last portion of the page asked you to choose a template. Please select the python option in order to have the workspace to run correctly. All that is left is to hit the create workspace button and your workspace will be configured correctly.
After you have accessed your environment, we have built some scripts into the system that will get the application up and running for you.
python setup.py install
. venv/bin/activate
python scripts/ConfigureApp.py
python app.py
Note: If you working inside of your own linux environment you may need to change the port and host information inside of ```app.py`` the default is setup up for working inside of cloud9
- Flask - Python Based Web Framework Used
- Jinja2 - HTML Templating Language for Python
- Peewee - A small, expressive ORM used for database communications
- SQLite - SQL database engine
- Apache2 -
sudo apt-get install apache2
- Python-Pip -
sudo apt-get install python-pip
- Virtualenv -
sudo apt install virtualenv
- WSGI -
sudo apt-get install libapache2-mod-wsgi
- Flask -
sudo pip install Flask
These tools will require additional steps by your server admin in order to get the application running.
- WSGI & Apache2 Sites-Enabled
- Logrotate
- Shibboleth (Optional)
Contributions of all kinds are welcome, not only in the form of code. We openly embrace that the systems were built with the intention of teaching Berea College students how to develop software. Therefore, if you believe that you could help us with our structure or coding standards feel free to contribute in that manner, or by helping other users or our students within the issue queue.
Additionally if you think something is bad about our documentation the way it is, please feel free to help us make it better. We are new to the world of Open Source after all.
We do ask that you review the CONTRIBUTING.md before submitting any pull request. We look forward to adding you to our community.
The versioning scheme that we use is SemVer.
- Berea College for providing us the opportunity to have a student software developers group.
- Our Community