clone the repository
git clone https://github.com/Musavirkhaliq/planner.gitchange directory
cd plannercreate a virtual environment
python -m venv venvactivate the virtual environment
source venv/bin/activateinstall dependencies
pip install -r requirements.txtcreate a .env file and add the following variables
cp .env.example .env
Create app.db file
```bash
touch app.dbGOOGLE_CLIENT_ID="your_google_client_id"
GOOGLE_CLIENT_SECRET="your_google_client_secret"\if you put these here to please update config.py
DATABASE_URL="your_database_url"
SECRET_KEY="your_secret_key"
ALGORITHM="your_algorithm"
ACCESS_TOKEN_EXPIRE_MINUTES="your_access_token_expire_minutes"python scripts/init_momentum.pyrun the server
python -m uvicorn app.main:app --reload --port 9000view app here http://localhost:9000/
view swagger api docs here http://localhost:9000/docs
view redoc api docs here http://localhost:9000/redoc