Upgrades Waspello to work with latest version (#1273)

* Upgrades Waspello to work with latest version

Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>

* Updates instructions

---------

Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>
Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com>
This commit is contained in:
Mihovil Ilakovac 2023-06-21 19:46:51 +02:00 committed by GitHub
parent 7c1e9879ab
commit 84766299cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 4 deletions

View File

@ -12,6 +12,11 @@ The backend is hosted on Fly.io at https://waspello.fly.dev.
### Database
Wasp needs the Postgres database running. Check out the docs for details on [how to setup PostgreSQL](https://wasp-lang.dev/docs/language/features#postgresql)
You can use `wasp start db` to start a PostgreSQL locally using Docker.
### Env variables
Copy `env.server` to `.env.server` and fill in the values.
### Running
`wasp start`

View File

@ -0,0 +1,2 @@
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=

View File

@ -1,6 +1,6 @@
app waspello {
wasp: {
version: "^0.8.0"
version: "^0.11.0"
},
title: "Waspello",
@ -20,10 +20,10 @@ app waspello {
},
dependencies: [
("react-feather", "2.0.9"),
("react-feather", "2.0.10"),
("classnames", "2.3.1"),
("react-tiny-popover", "7.1.0"),
("react-beautiful-dnd", "13.1.0")
("react-beautiful-dnd", "13.1.1")
]
}

View File

@ -1,7 +1,6 @@
import React, { useState } from 'react'
import { Link, useHistory } from 'react-router-dom'
import SignupForm from '@wasp/auth/forms/Signup'
import signup from '@wasp/auth/signup'
import login from '@wasp/auth/login'