A open source developer community to promote local hackathons, conferences, and meetups, mentoring, calls for speakers, and collaboration.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software (latest versions) and how to install them
The following steps are required for first time setup. These steps will check out the repository, install the project dependencies, and the client dependencies needed for the React frontend and run the service on http://localhost
. Note http://localhost
will show a gateway error until the client has completed building (typically 1 minute for first time setup).
git clone https://github.com/apoclyps/my-dev-space
cd my-dev-space
npm install
cd services/client
npm install
cd ../../
docker-compose -f docker-compose-dev.yml up -d
Once the service is up and running, you will need to manually create the required tables in the database and install the optional seed data to complete the local Postgres setup.
docker-compose -f docker-compose-dev.yml run users-service python manage.py recreate_db
docker-compose -f docker-compose-dev.yml run users-service python manage.py seed_db
docker-compose -f docker-compose-dev.yml run events-service python manage.py recreate_db
On subsequent runs (when the above steps have been completed), you can apply new database migrations to your local service by running:
docker-compose -f docker-compose-dev.yml run users-service python manage.py db upgrade
docker-compose -f docker-compose-dev.yml run events-service python manage.py db upgrade
Alternatively, if you make a change to a model during development, you will need to create and commit a migration file for that service. As a best practice, migration files should be committed independently to code:
docker-compose -f docker-compose-dev.yml run users-service python manage.py db migrate
docker-compose -f docker-compose-dev.yml run events-service python manage.py db migrate
To load data into the service for development, the recommended solution is to use the load script within the scripts
folder to populate the local database. Details on how to configure the script can be found in scripts/README.md
.
cd scripts/
./load_data.sh dev
And to tear down the local development stack, simply run:
docker-compose -f docker-compose-dev.yml down
If you wish to populate your local database with events from external services, you can use the steps outlined in the scripts README.
The following will run the unit tests for each respective service:
client
docker-compose -f docker-compose-dev.yml run client-test npm test
users-service
docker-compose -f docker-compose-dev.yml run users-service python manage.py test
events-service
docker-compose -f docker-compose-dev.yml run events-service python manage.py test
client
docker-compose -f docker-compose-dev.yml run client npm run lint
users-service
docker-compose -f docker-compose-dev.yml run user-service py.test --black --pep8 --flakes -vv --mccabe --cov=project --cov-report=term-missing --junitxml=test-results/results.xml
events-service
docker-compose -f docker-compose-dev.yml run events-service py.test --black --pep8 --flakes -vv --mccabe --cov=project --cov-report=term-missing --junitxml=test-results/results.xml
docker-compose -f docker-compose-dev.yml run users-service python manage.py cov
docker-compose -f docker-compose-dev.yml run events-db sh
psql postgres://postgres:postgres@events-db:5432/events_dev
Allows scripts/tasks to be run in environments specific docker containers.
docker-compose -f docker-compose-dev.yml build events-task
docker-compose -f docker-compose-dev.yml run events-task python scripts/test.py
Integration tests used to evaluate all services behave correctly
npm install testcafe -g
export TEST_URL='http://localhost'
testcafe chrome e2e
Deployments to the staging and production environments require a PR to be opened against the staging/production branches; Upon successfully merging a PR into either branch; Travis CI will build, run, test, and deploy the changes to AWS ECS.
A list of contributors who participated in this project.
Kyle Harrison 💻 📖 |
Adam Smith 💻 |
Ewa G 💻 |
Michael Grundie 💻 |
DermotMcAteer 💻 |
kimmoylan 💻 |
Peter Stevenson 💻 |
---|---|---|---|---|---|---|
Alistair Brown 💻 |
gingerzoealex 💻 🎨 |
Annette McCullough 💻 |
This project is licensed under the MIT License - see the LICENSE.md file for details
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.