bug fixes
This commit is contained in:
parent
fee7ea5678
commit
7b0ac130f8
5
README.md
Normal file
5
README.md
Normal 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
|
||||||
@ -7,9 +7,9 @@ This is the API for my 2023-2024 FBLA Coding & Programming App
|
|||||||
3. Clone the repo
|
3. Clone the repo
|
||||||
```
|
```
|
||||||
git clone https://git.marinodev.com/MarinoDev/FBLA24.git
|
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
|
## Usage
|
||||||
|
|
||||||
@ -22,7 +22,8 @@ CREATE DATABASE fbla
|
|||||||
CONNECTION LIMIT = -1
|
CONNECTION LIMIT = -1
|
||||||
IS_TEMPLATE = False;
|
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
|
2. Create `businesses` table
|
||||||
```
|
```
|
||||||
-- Table: public.businesses
|
-- Table: public.businesses
|
||||||
@ -51,6 +52,7 @@ ALTER TABLE IF EXISTS public.businesses
|
|||||||
OWNER to [username];
|
OWNER to [username];
|
||||||
```
|
```
|
||||||
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
|
||||||
|
|
||||||
3. Create `users` table
|
3. Create `users` table
|
||||||
```
|
```
|
||||||
-- Table: public.users
|
-- Table: public.users
|
||||||
|
|||||||
@ -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
|
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
|
4. Run `flutter pub get` to install all dependencies
|
||||||
|
|||||||
@ -325,6 +325,11 @@ class _HomeState extends State<Home> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
|
const SliverToBoxAdapter(
|
||||||
|
child: SizedBox(
|
||||||
|
height: 80,
|
||||||
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user