Skip to content

Job and Network Tracking app, features shared dashboards. Made using PERN + Redux stack.

Notifications You must be signed in to change notification settings

JuliaGrandury/phoenix-app-pern

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation


Phoenix

An app here to help you stay on top of your job search and never miss another opportunity!
View Demo · Report Bug · Request Feature

About The Project & Demo

In the process of being deployed and hosted on AWS


Phoenix.Demo.mov

TLDR; Phoenix allows users to keep track of their current job applications, networking progress and job search statistics all in one with summary emails every week and daily job progress statistics. Features include:

  • Allowing job seekers to give mentors, parents, accountability buddies - called "believers" - access to their progress by choosing which pages they have access to
  • Editable kanban board of the week's tasks by both the user and selected "believers"
  • Weekly summary emails to the job seeker and selected "believers"
  • Notifications when a job is created, a job status is updated or a job posting is closed
  • Leaderboards of the most involved job seekers based on application and networking ratios
  • Increasingly better job suggestions
  • Import and export of the data through CSV files
  • And more in development...

Design document coming soon for more details on the product.

(back to top)

Installing Phoenix

Prerequisites

  1. You will need to have Node.js and npm package manager installed. Verify that you do with the commands node -v and npm -v. If you do not, visit Node.js and download the version labeled LTS. To install the latest version of npm run npm install npm@latest -g. Finally, verify that both are correctly installed using node -v and npm -v.
  2. You will also need to have PostgreSQL installed. Verify that you do with the command psql --version. If you do not, visit PostgreSQL to download it and Install PostgreSQL macOS or Install PostgreSQL on Windows for help. Ensure that you checked "PostgreSQL Server" and "Command Line Tools" during the installation. (Note: Take note of your postgres password and keep it private as you will need it later!)

Installation Steps

  1. Download the ZIP: At the top right of the web version of Github, click on the green button "<> Code" > Download Zip > Double-click on the ZIP folder to uncompress it OR clone the repo with:
    git clone https://github.com/JuliaGrandury/phoenix-app-pern.git
  2. Install dependencies
    npm i
  3. Create your own postgreSQL database and tables with the commands in db.sql.
  4. Create a .env file in your server folder with the following variables:
PORT = 5000
NODE_ENV = development // Note: you will change this to "production" in production
CLIENT_URL = "http://localhost:3000"
PGUSER=postgres
PGPASSWORD="your postgres password"
PGHOST=localhost
PGPORT=5432
PGDATABASE="your database name"
  1. Create a config.js file in client/src with the following:
const localConfig = {
    apiUrl: "http://localhost:5000"
}
const prodConfig = {
    apiUrl: "your production URL here"
}
export const config = process.env.NODE_ENV === "production" ? prodConfig : localConfig
  1. Run the frontend of the application using npm run start and the backend using nodemon server.js
  2. Run the test suite using npm test or a specific file using npm test <filepath>

(back to top)

Built With

Front-end

Back-end

  • Node.js - Runtime environment for JS
  • Express.js - Node.js framework, makes process of building APIs easier & faster
  • PostgreSQL - Opens-source SQL database to store data
  • JSON Web Token - A standard to secure/authenticate HTTP requests
  • Bcrypt.js - For hashing passwords
  • Dotenv - To load environment variables from a .env file

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Contact

Julia Grandury - booleanjules@gmail.com

Project Link: https://github.com/JuliaGrandury/phoenix-app-pern

(back to top)

About

Job and Network Tracking app, features shared dashboards. Made using PERN + Redux stack.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published