An app here to help you stay on top of your job search and never miss another opportunity!
View Demo
·
Report Bug
·
Request Feature
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.
- You will need to have Node.js and npm package manager installed. Verify that you do with the commands
node -v
andnpm -v
. If you do not, visit Node.js and download the version labeled LTS. To install the latest version of npm runnpm install npm@latest -g
. Finally, verify that both are correctly installed usingnode -v
andnpm -v
. - 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!)
- 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
- Install dependencies
npm i
- Create your own postgreSQL database and tables with the commands in db.sql.
- 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"
- 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
- Run the frontend of the application using
npm run start
and the backend usingnodemon server.js
- Run the test suite using
npm test
or a specific file usingnpm test <filepath>
- ReactJS - Frontend framework
- Redux w/ hooks - State management library
- Redux Toolkit - Toolset for efficient Redux development
- Redux Thunk - Middleware which allows action creators to return a function
- React Router - Library for general routing & navigation
- React Hook Form - Library for flexible & extensible forms
- date-fns - Library for manipulating/formatting of timestamps
- 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
Distributed under the MIT License. See LICENSE.txt
for more information.
Julia Grandury - booleanjules@gmail.com
Project Link: https://github.com/JuliaGrandury/phoenix-app-pern