Commit 9dd789aa authored by Petr Babic's avatar Petr Babic
Browse files

start install guide

parent 11734a82
Loading
Loading
Loading
Loading

README.md

0 → 100644
+26 −0
Original line number Diff line number Diff line
## Requirements
* Software: 
  * `python` version 3.9 and above
  * `pip`
  * `sqlite3`
  * `git`
* Hardware:
  * 1GB RAM
  * 1GB disk space

## Installation
Clone this repository.
```shell
# with HTTPS,
git clone https://gitlab.fi.muni.cz/xbabic/pb175.git
```
```shell
# or with SSH
git clone git@gitlab.fi.muni.cz:xbabic/pb175.git
```

Go inside it and run the installation script.
```shell
cd pb175
sh install.sh
```
+14 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="../static/css/place_order.css">
  <title>My Flask App</title>
</head>
<body>
  <div class="rectangle">
    <p class="title" style="margin-top: 50px">ORDERS</p>
    <button class="button" type="submit" style="margin-top: 20px">Update</button>
  </div>
</body>
</html>