Code Monkey home page Code Monkey logo

phoenix-app-pern's Introduction


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 - [email protected]

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

(back to top)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.