Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bharadwajrachakonda/e-learning-frontend
This is our dbms project implementing backend at flask using SQL-Lite and front end using Tailwind css and React + Vite.js Key learning's are creating RESTful API's and accessing them in the front end
https://github.com/bharadwajrachakonda/e-learning-frontend
css3 entity-relational-database flask flask-sqlalchemy git html restful-api schema sqlite tailwindcss
Last synced: 3 days ago
JSON representation
This is our dbms project implementing backend at flask using SQL-Lite and front end using Tailwind css and React + Vite.js Key learning's are creating RESTful API's and accessing them in the front end
- Host: GitHub
- URL: https://github.com/bharadwajrachakonda/e-learning-frontend
- Owner: BharadwajRachakonda
- Created: 2024-11-16T04:22:25.000Z (4 days ago)
- Default Branch: main
- Last Pushed: 2024-11-16T04:23:25.000Z (4 days ago)
- Last Synced: 2024-11-16T05:20:21.884Z (4 days ago)
- Topics: css3, entity-relational-database, flask, flask-sqlalchemy, git, html, restful-api, schema, sqlite, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installations
npm install
npm run dev (start with the backend url no need to open the front end front end link is given at the backend)
# Issues
Having a issue with tailwind add this to vite.config.js
```javascript
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "tailwindcss";export default defineConfig({
plugins: [react()],
css: {
postcss: {
plugins: [tailwindcss()],
},
},
});
```