An open API service indexing awesome lists of open source software.

https://github.com/jaay7/learn-it

A small CRUD app to manage tutorials.
https://github.com/jaay7/learn-it

flask html mongodb mysql python

Last synced: 3 months ago
JSON representation

A small CRUD app to manage tutorials.

Awesome Lists containing this project

README

          

# learn-it

Creating a virtual environment.

```sh
virtualenv venv
```

Activating virtual environment.

```
venv\Scripts\activate
```

Installing all the packages using *requirements.txt* file

```sh
pip install -r requirements.txt
```

If packages are already installed it will update accordingly.

```sh
pip install -U -r requirements.txt
```

create a *.env* file and fill your details
```
MONGODB_URI=

MYSQL_HOST=

MYSQL_USER=

MYSQL_PASSWORD=
```