bug fixes

This commit is contained in:
Drake Marino 2024-04-07 13:18:44 -05:00
parent fee7ea5678
commit 7b0ac130f8
4 changed files with 18 additions and 6 deletions

5
README.md Normal file
View File

@ -0,0 +1,5 @@
This is my app `Job Link` for the 2023-2024 FBLA Coding and Programming event.
It uses the [Flutter Framework](https://flutter.dev/) for the front end and [Dart Language](https://dart.dev/) for both the front end and API.
Please view the README in [fbla_ui](fbla_ui/README.md) and [fbla-api](fbla-api/README.md) for specific instructions for installation and usage for each part of the app

View File

@ -7,9 +7,9 @@ This is the API for my 2023-2024 FBLA Coding & Programming App
3. Clone the repo
```
git clone https://git.marinodev.com/MarinoDev/FBLA24.git
cd FBLA24/api/
cd FBLA24/fbla-api/
```
3. Run `dart pub install` to install dart packages
4. Run `dart pub install` to install dart packages
## Usage
@ -22,7 +22,8 @@ CREATE DATABASE fbla
CONNECTION LIMIT = -1
IS_TEMPLATE = False;
```
Make sure to change [username] to the actual username of your postgres instance
Make sure to change [username] to the actual username of your postgres instance.
2. Create `businesses` table
```
-- Table: public.businesses
@ -51,6 +52,7 @@ ALTER TABLE IF EXISTS public.businesses
OWNER to [username];
```
Make sure to change [username] to the actual username of your postgres instance
3. Create `users` table
```
-- Table: public.users

View File

@ -12,7 +12,7 @@ alternatively, you can compile it yourself for use with your own API and databas
```
git clone https://git.marinodev.com/MarinoDev/FBLA24.git
cd FBLA24/ui/
cd FBLA24/fbla_ui/
```
4. Run `flutter pub get` to install all dependencies

View File

@ -325,6 +325,11 @@ class _HomeState extends State<Home> {
),
);
}),
const SliverToBoxAdapter(
child: SizedBox(
height: 80,
),
)
],
),
),