Klevernote is a clone of the popular note-taking app, Evernote.
- Material-UI
- React
- React-DOM
- Redux
- React-Quill
- Python
- Flask
- SQLAlchemy
- Alembic
- PostgreSQL
- Gunicorn
- Docker
- Heroku
Users can create, edit, and delete Notes.
Users can save Notes in collections called Notebooks. Users can create, edit, and delete Notebooks.
Users can create and delete Tags as well as add or remove them from Notes.
Rich-text editing allows users to view their Note's styling and formatting as it will appear in its final form.
Any editing done to a note is saved automatically.
1. Search (Notes, Tags, Notebooks)
2. Sorting (Alphabetical, Recent)
3. Note Templates
-
Clone this repository (only this branch)
git clone https://github.com/mjshuff23/evernote-clone.git
-
Install dependencies
pipenv install --dev -r dev-requirements.txt && pipenv install -r requirements.txt
-
Create a .env file based on the example with proper settings for your development environment
-
Setup your PostgreSQL user, password and database and make sure it matches your .env file
-
Get into your pipenv, migrate your database, seed your database, and run your flask app
pipenv shell
flask db upgrade
flask seed all
flask run
-
To run the React App in development, checkout the README inside the
react-app
directory.
IMPORTANT! If you add any python dependencies to your pipfiles, you'll need to regenerate your requirements.txt before deployment. You can do this by running:
pipenv lock -r > requirements.txt
ALSO IMPORTANT! psycopg2-binary MUST remain a dev dependency because you can't install it on apline-linux. There is a layer in the Dockerfile that will install psycopg2 (not binary) for us.
-
Create a new project on Heroku
-
Under Resources click "Find more add-ons" and add the add on called "Heroku Postgres"
-
Install the Heroku CLI
-
Run
heroku login
-
Login to the heroku container registry
heroku container:login
-
Update the
REACT_APP_BASE_URL
variable in the Dockerfile. This should be the full URL of your Heroku app: i.e. "https://flask-react-aa.herokuapp.com" -
Push your docker container to heroku from the root directory of your project. This will build the dockerfile and push the image to your heroku container registry
heroku container:push web -a {NAME_OF_HEROKU_APP}
-
Release your docker container to heroku
heroku container:release web -a {NAME_OF_HEROKU_APP}
-
set up your database:
heroku run -a {NAME_OF_HEROKU_APP} python -m flask db upgrade heroku run -a {NAME_OF_HEROKU_APP} python -m flask seed all
-
Under Settings find "Config Vars" and add any additional/secret .env variables.
-
profit