Seattle VolunTech is a platform that connects minority- and immigrant-owned small businesses with technical resources necessary to improve web presence and brand awareness in the Seattle area.
Seattle VolunTech one of three projects resulting from the efforts of the WTIA ION Collaborators - Cohort 3 developed and maintained in concert with Codefellows code school in Seattle.
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.
- In your project's file tree view, right click on the "seattlevoluntech", then "Optimize Imports"
- In your project's file tree view, navigate and open
src/main/resources/application.properties
- Add the following configurations values, fill in the username and password configured for your database <>
spring.datasource.username=<postgres_db_user_name>
spring.datasource.password=<postgres_db_password>
- Ask the Project Administrator about the "auth0.client-secret" secret value
- In the IntelliJ application menu bar, navigate to the "Run" -> "Edit Configuration"
- On the "Environment Variables" line, click on the "..." button
- Click the "+" icon to add a new environment variable
- Populate "name" with "auth0.client-secret"
- Populate the "value" with the secret value provided by the Project Administrator
- In your project's file tree view, navigate and open
src/main/java/org.seattlevoluntech/SeattlvoluntechApplication.java
- In the IntelliJ application menu bar, click on "Run" -> "Run"
- If the build is successful, the terminal will shows the server's local URL, eg.
https://localhost:8080
- Open Terminal in IntelliJ (this will run command line arguments so linux/mac commands won't work)
- Type psql -Upostgres (this assumes your username is the default, if not, put something else after the -U so if it was "Seattle", it would be psql -USeattle)
- Type create database voluntech (you may change voluntech to some other database if needed)
- On the top next to the play button, click on the drop down and then "Edit configurations" Make sure it's on SeattlevoluntechApplication
- Click the arrow next to Environment
- Click the folder on the right of the box for "Environment variables"
- Click the '+' button
- Put auth0.client-secret for name and 0v2hUD4ybblJBI4aGGKbdcygtArU60g-9a0CNRVRovjZ-LTQvaWLDheSPlQKwzA2 for value Click OK
- Run the program, it should show a website when you go to https://localhost:8080 ... more to come ...