quidproquo-web-admin 0.0.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # Quidproquo Web Logs - WIP - Not for production
2
+
3
+ Welcome to Quidproquo Web Logs, an interface for viewing logs that happen in your server! This
4
+ project is part of the Quidproquo platform, which deploys web servers to AWS but is platform
5
+ independent.
6
+
7
+ ## Features
8
+
9
+ With Quidproquo Web Logs, you can:
10
+
11
+ - View a list of logs.
12
+ - Filter logs by date and time.
13
+ - Search logs by keyword.
14
+ - View detailed information for each log entry.
15
+
16
+ ## Technologies Used
17
+
18
+ Quidproquo Web Logs is built using React, a popular JavaScript library for building user interfaces.
19
+ It uses Axios for making HTTP requests to the server and Moment.js for parsing and formatting dates.
20
+
21
+ ## Installation
22
+
23
+ To install Quidproquo Web Logs, follow these steps:
24
+
25
+ 1. Clone this repository to your local machine.
26
+ 2. Navigate to the project directory.
27
+ 3. Run `npm install` to install the required dependencies.
28
+ 4. Run `npm start` to start the development server.
29
+
30
+ ## Usage
31
+
32
+ To use Quidproquo Web Logs, follow these steps:
33
+
34
+ 1. Open your web browser and navigate to the URL of the Quidproquo Web Logs interface.
35
+ 2. Log in with your Quidproquo credentials.
36
+ 3. Select the web server whose logs you want to view.
37
+ 4. Use the date and time filters to narrow down the list of logs.
38
+ 5. Use the search bar to search for logs by keyword.
39
+ 6. Click on a log entry to view detailed information about it.
40
+
41
+ ## Contributing
42
+
43
+ If you'd like to contribute to Quidproquo Web Logs, please follow these steps:
44
+
45
+ 1. Fork this repository to your own GitHub account.
46
+ 2. Clone your forked repository to your local machine.
47
+ 3. Make your changes and test them locally.
48
+ 4. Push your changes to your forked repository on GitHub.
49
+ 5. Submit a pull request to the original repository.
50
+
51
+ ## License
52
+
53
+ Quidproquo Web Logs is licensed under the MIT License. See `LICENSE` for more information.
54
+
55
+ ## Acknowledgments
56
+
57
+ - The Quidproquo team for their support and feedback.
58
+
59
+ ### Note
60
+
61
+ Currently under development ~ Not for production
62
+
63
+ ### References
64
+
65
+ https://levelup.gitconnected.com/full-guide-start-react-app-from-scratch-2e1579ac6868
package/lib/index.html ADDED
@@ -0,0 +1,3 @@
1
+ <!doctype html><html><head><meta name="viewport" content="width=device-width,initial-scale=1"/><meta charset="utf-8"/><style>* {
2
+ box-sizing: border-box;
3
+ }</style><script defer="defer" src="index.js"></script></head><body style="margin: 0px"><div id="root"></div></body></html>