You can call us, Ed.
The unique and specific focus of our work is “Network-Building”. The Birmingham Education Foundation (Ed) is dedicated to increasing the number of students in the Birmingham City Schools that are on the path to college, career, and life readiness. We believe that this is only possible by cultivating a diverse network of people who demand excellence for our students and inspire others to do the same. We believe Network members are:
To actively cultivate the Network, we provide direct programming for students and fun and interactive opportunities for Network members to build new relationships and strengthen existing ones. We serve as Connectors among five different stakeholder groups – students, educators, families, local residents, and community partners– bringing them together to create a new operating culture that sparks organic and objective-driven visions to increase student preparedness for college, career, and life.
In order to reach our Network membership and action goals it is imperative that we maintain organization of our data, communication, and progress. The Network Asset Database, aka edbirmingham/network, is being developed to increase Ed’s Network activity; maintaining Membership records, supporting stewardship (progress to requests/offers between Network members), and increasing access and awareness to school/community based assets.
Network is 100% free and open-source. We encourage and support an active, healthy community that accepts contributions from the public – including you! To maximize openness we operate according to the Collective Code Construction Contract
This setup uses AWS Cloud9 for your development environment. Cloud9 provides an online development environment and server for you to use. All you need is a browser and good internet connection. Everything else is available on Cloud9.
sudo yum install postgresql postgresql-server postgresql-devel postgresql-contrib postgresql-docs postgresql-libs
sudo service postgresql initdb
sudo service postgresql start
sudo su - postgres
psql -U postgres
CREATE USER "ec2-user" SUPERUSER;
CREATE DATABASE "ec2-user" WITH OWNER "ec2-user";
\q
exit
export OTP_SECRET_ENCRYPTION_KEY=4e8332ae3fe1af0469d75516682aa9a6e5086ccff6c7b1a1d79e3bce197b9
function ensurepostgres {
if [[ ! $(ps -ef | grep -v grep | grep "postgres" | wc -l) > 0 ]]; then
sudo service postgresql start
fi
}
ensurepostgres
git config --global user.name "<your name>"
git config --global user.email <your email address>
git clone git@github.com:anthonycrumley/network.git
cd network
git remote add upstream https://github.com/edbirmingham/network.git
git pull upstream master
bundle install
cp config/database.yml.example config/database.yml
rake db:setup
rails s -b 0.0.0.0
as the command.network
folder that contains the git repo cloned from your fork of edbirmingham/network
.jane.doe@example.com
and password password
.git pull upstream master
irb
similar to the following
/usr/local/rvm/rubies/ruby-2.4.1/lib/ruby/2.4.0/irb/ext/save-history.rb:75:in `initialize': Permission denied @ rb_sysopen - /usr/local/rvm/rubies/ruby-2.4.1/.irbrc_history (Errno::EACCES)
irb
or rails console
sudo -i
rvm get head
rvm reinstall 2.4.1
exit
irb
history should work correctly.