-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added manifest and necessary icons for pwa
- Loading branch information
Showing
31 changed files
with
238 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
|
||
# job-search-portal (Jobber) | ||
|
||
[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/) | ||
|
||
This project is a job search portal that allows users to search for jobs and apply for them. | ||
|
||
The generic name *job-search-portal* was the initial project name. During development, the more brand-ready name *Jobber* was born. | ||
|
||
## Demo | ||
|
||
Deployment should be available at: [Jobber](https://jobber.benelfen.com) | ||
|
||
## Tech Stack | ||
|
||
**Client:** Ionic, React, Auth0 | ||
|
||
**Server:** TRPC, Prisma, PostgreSQL | ||
|
||
**Deployment:** Docker, Compose | ||
|
||
## Run Locally | ||
|
||
Clone the project | ||
|
||
```bash | ||
git clone https://github.com/ElfenB/job-search-portal.git | ||
``` | ||
|
||
Go to the project directory | ||
|
||
```bash | ||
cd job-search-portal | ||
``` | ||
|
||
Make sure, environment variables are specified | ||
|
||
```bash | ||
cp .env.example .env | ||
# Edit as required | ||
``` | ||
|
||
Setup database if required | ||
|
||
```bash | ||
# Install Postgres Helm Chart | ||
task -d postgres prepare | ||
|
||
# Deploy database to K8s cluster (e.g. with Docker Desktop or Minikube) | ||
task -d postgres deploy | ||
|
||
# Get Postgres password | ||
task -d posgres get-pass | ||
|
||
# Tunnel database | ||
task -d postgres port-forward | ||
``` | ||
|
||
Start the server (dependencies should be automatically installed by predev script) | ||
|
||
```bash | ||
# Frontend | ||
npm run dev | ||
|
||
# Migrate database | ||
npm run db:migrate-dev | ||
|
||
# Backend | ||
npm run dev:server | ||
``` | ||
|
||
## Deployment | ||
|
||
To deploy this project run | ||
|
||
```bash | ||
docker compose up -d --build | ||
``` | ||
|
||
## Authors | ||
|
||
- [@ElfenB](https://www.github.com/ElfenB) | ||
|
||
## Acknowledgements | ||
|
||
This README was generated using [readme.so](https://readme.so/) | ||
|
||
## License | ||
|
||
[MIT](https://choosealicense.com/licenses/mit/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<browserconfig> | ||
<msapplication> | ||
<tile> | ||
<square150x150logo src="/mstile-150x150.png"/> | ||
<TileColor>#038260</TileColor> | ||
</tile> | ||
</msapplication> | ||
</browserconfig> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "", | ||
"short_name": "", | ||
"icons": [ | ||
{ | ||
"src": "/android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/android-chrome-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#038260", | ||
"background_color": "#038260", | ||
"display": "standalone" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// Source: https://ionicframework.com/docs/img/demos/avatar.svg | ||
export const fallbackUserImage = './avatar.svg'; | ||
export const fallbackUserImage = './assets/avatar.svg'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ root.render( | |
); | ||
|
||
// FOCUS: | ||
// - Add feedback button inside app (e.g. mailto:[email protected] ==> check mail settings) | ||
// - Add possibility to accept jobs | ||
|
||
// TODO: Add chat functionality (BE and FE) ==> Look for libraries | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters