Skip to content

Commit

Permalink
chore: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
vugonz committed Nov 15, 2024
1 parent 8037238 commit 9c005d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ The HackerSchool API is an integrated database that accepts requests from the In
- CRUD operations for members and projects
- Members and projects photos fetch and upload

## Technologies
## Technologies & Extensions
- Web App Framework - [Flask](https://github.com/pallets/flask)
- Session management - [Flask-Session](https://github.com/pallets-eco/flask-session/)
- ORM - [Flask-SQLAlchemy](https://github.com/pallets-eco/flask-sqlalchemy/)
- CORS - [Flask-Cors](https://github.com/corydolphin/flask-cors)
- Migrations - [Flask-Migrate](https://github.com/miguelgrinberg/flask-migrate)
- Database - [sqlite3](https://docs.python.org/3/library/sqlite3.html)

## Setup
Expand Down Expand Up @@ -55,7 +56,7 @@ pip install -r requirements.txt

5. **Setup the database and create an admin user**:
```bash
flask init-db
flask db upgrade
flask create-admin
```
6. **Run the application**:
Expand Down
1 change: 1 addition & 0 deletions app/commands/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from app.extensions import db

# DEPRECATED please us use migrations
def register_initialize_db_command(app: Flask):
@app.cli.command('init-db')
def initialize_db():
Expand Down

0 comments on commit 9c005d8

Please sign in to comment.