/Contacts-App

An app made in flask to store and manage contacts.

Primary LanguageHTMLMIT LicenseMIT

MyContacts App

An app made in flask to store and manage contacts.

About

This is a project created to apply my studies acquired during the semester.

It's an application developed in Python designed to store and manage contacts of multiple users.

exemple

Features

  • User registration
  • Contact registration
  • Contact management
  • Import/Export contacts
  • Search contact

You can see a demo in the link below:

  • link

🚀 Getting Started

These instructions will allow you to obtain a copy of the project on your local machine for development and testing purposes.

📋 Prerequisites

You need to have Python3.6+ installed on your machine

🔧 Install and Run

Clone the project

$ git clone

Install the dependencies

$ cd contacts_app
$ pip install -r requirements.txt

generate a secret key

$ python3
$ import os
$ os.urandom(12).hex

Insert the secret key into init.py

app.config['SECRET_KEY'] = '->HERE<-'

If you want, create a sqlite database with some examples using the db_init()

$ python3
$ from run_app import db_init
$ db_init()

Run the flask app

$ python3 run_app.py

The application should be up and running at http://localhost:5000

🛠️ Technologies

Autor


Ruy Araujo

📄 License

This project is under MIT-license - see file LICENSE.md for details.