This project main goal was to make a multi-user calendar to arrange meetings with clients.
A live demo is available.
- Internationalization for easy translations to other languages, mainly portuguese.
- Authentication with email or Google identity provider.
- Each user can only access its own clients.
- users and clients are stored in Firebase Firestore.
- CI/CD pipeline to work with GitHub Pages.
This project was bootstrapped with Create React App. Hence, many scripts are the same.
In order to emulate Firebase Backend locally you will need: OpenJDK, Firebase Tools, Node.js.
In ubuntu to install OpenJDK do:
sudo apt update && sudo apt install openjdk-18-jdk -y
In ubuntu to install Node.js:
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
Then do:
nvm install node
nvm use node
In ubuntu to install Firebase Tools:
npm install -g firebase-tools
Then to configure Firebase Tools:
firebase login
Clone this repository
git clone https://github.com/SeuRonao/meeting-scheduler.git
Install the dependencies
npm install
With the above part done you can, from the root directory of the project use the following scripts:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
The app will automatically try to connect to the Firestore Emulator
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
GITHUB Actions already take care of building and deploying the app on every push/merge to the main branch. There is no need to use this script unless it is to test locally.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
GITHUB Actions already take care of building and deploying the app on every push/merge to the main branch. There is no need to use this script unless it is to test remotely something.
This builds and deploy the CURRENT version of the project to gh-pages branch on GitHub.
Start the emulators to allow the local app to connect.
If you want persistence between sessions of the emulation you can use
firebase emulators:start --import=dummy_data --export-on-exit