https://github.com/flavien-hugs/jobboard-with-fastapi
Job board API with FastAPI
https://github.com/flavien-hugs/jobboard-with-fastapi
fastapi fastapi-sqlalchemy
Last synced: 7 months ago
JSON representation
Job board API with FastAPI
- Host: GitHub
- URL: https://github.com/flavien-hugs/jobboard-with-fastapi
- Owner: flavien-hugs
- Created: 2022-12-05T00:02:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-19T10:13:35.000Z (almost 3 years ago)
- Last Synced: 2025-02-03T13:44:14.247Z (9 months ago)
- Topics: fastapi, fastapi-sqlalchemy
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JobBoard API
## Technology Stack:
- Python 3.10+
- pipenv ou pip
- FastAPI
- Uvicorn (server)
- Pytest
- sqlalchemy
- Alembic
- Postgresql## Clone the project
```
git clone https://github.com/flavienn-hugs/jobboard-with-fastapi.git
```## Test the project locally
```
run: make runserver
or
uvicorn backend.main:app --reload
```## Installing the dependencies
```
If use pipenv: pipenv installor
If using pip: pip install -r backend/requirements.txt
```## Features
- List a job post
- Details of the job post
- Create a job post
- Update the job
- Delete the job
- Permissions (Authorization required, only superuser and the original author can delete)
- Authentication ( Registration and Login )
- Test our Endpoints
- Test Coverage
- Webapp for Jobboard