Geffrerson7 / JOB-CRUD

App for create, list, update and delete jobs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JOB-CRUD

Description

An app built with Flask, Python, HTML, and JavaScript to create, list, update, and delete your job applications.

Local Installation

First clone the repository from Github and switch to the new directory:

  $ clone git https://github.com/Geffrerson7/JOB-CRUD.git
  $ cd JOB-CRUD

Activate the virtualenv for your project.

$ virtualenv venv
# windows
$ source venv/Scripts/activate
# Linux
$ source venv/bin/activate

Install project dependencies:

(env)$ pip install -r requirements.txt

Create the following environment variables in the .env file

FLASK_APP

FLASK_DEBUG

FLASK_ENV

SECRET_KEY

SQLALCHEMY_DATABASE_URI

Execute the migrations:

(env)$ flask db init
(env)$ flask db migrate
(env)$ flask db upgrade

You can now run the development server:

(env)$ flask run

And navigate to

http://127.0.0.1:5000/

Technologies and programming languages

Author

About

App for create, list, update and delete jobs.


Languages

Language:HTML 60.6%Language:Python 21.1%Language:JavaScript 14.0%Language:CSS 2.5%Language:Dockerfile 1.8%