Skip to content

Commit

Permalink
feat(frontend): revamp landing page (#215)
Browse files Browse the repository at this point in the history
* feat: finish landing page + fix backend

* chore(frontend): clean up formatting and remove unused tailwind config

* chore: add heroicons package

* fix(frontend): resolve fetching issues

* chore: remove button todo comment
  • Loading branch information
joanna209 authored Jun 10, 2023
1 parent f2f7ca8 commit 030496c
Show file tree
Hide file tree
Showing 23 changed files with 3,390 additions and 417 deletions.
2 changes: 1 addition & 1 deletion backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Then backend server:
```
cd ../backend
docker build -t cselectives-api .
docker run --network cselectives-network --name cselectives-api -e POSTGRESQL_HOST=cselectives-db -e POSTGRESQL_USER=postgres -e POSTGRESQL_PASSWORD=password -e POSTGRESQL_DATABASE=mydb -e REDIS_HOST=cselectives-cache -e REDIS_USER="test" -e REDIS_PASSWORD="test" -p 3030:3030 cselectives-api
docker run --network cselectives-network --name cselectives-api -e POSTGRESQL_HOST=cselectives-db -e POSTGRESQL_USER=postgres -e POSTGRESQL_PASSWORD=password -e POSTGRESQL_DATABASE=mydb -e REDIS_HOST=cselectives-cache -p 3030:3030 cselectives-api
```

## Running
Expand Down
4 changes: 2 additions & 2 deletions backend/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ export const env = envsafe({
devDefault: "localhost",
}),
REDIS_USER: str({
devDefault: "test",
devDefault: " ",
}),
REDIS_PASSWORD: str({
devDefault: "test",
devDefault: " ",
}),
});

Expand Down
Loading

0 comments on commit 030496c

Please sign in to comment.