https://github.com/micahondiwa/enwriters_v1
https://github.com/micahondiwa/enwriters_v1
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/micahondiwa/enwriters_v1
- Owner: micahondiwa
- Created: 2024-03-02T14:16:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-04T12:59:49.000Z (over 1 year ago)
- Last Synced: 2025-04-03T19:34:29.038Z (7 months ago)
- Language: Python
- Size: 325 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Enwriters
- This is alx specialization portfolio project.
### How to use this repo - getting started:1. Clone the repo.
2. Cd to the root directory.
3. Create a python virtual environment (venv):
```
python -m venv venv
```
or
```
python3 -m venv venv
```
4. Activate the venv:
- In windows:
```
.\venv\Scripts\activate
```
or
```
venv\Scripts\Activate.ps1
```
- In Mac:
```
source venv/bin/activate
```
5. Install all packages/libraries using requirements.txt file:
```
pip install -r requirements.txt
```6. You can now run the app:
```
python .\run.py
```7. Check the API endpoints from a browser:
```
http://127.0.0.1:5000/docs
```
8. start the frontend:
```
cd frontend
``````
npm start
```9. View the landing page:
```
http://localhost:3000
```
### Files and FoldersContributers:
- [Micah Ondiwa](https://github.com/micahondiwa)
- [tobias-baraka](https://github.com/tobias-barakaa)