Skip to content

Commit 928ee01

Browse files
committed
♻️ All in javascript
1 parent a9445f5 commit 928ee01

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1001
-688
lines changed

Diff for: .gitignore

+4-100
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ yarn-debug.log*
2525
yarn-error.log*
2626

2727
# local env files
28+
.env
2829
.env.local
2930
.env.development.local
3031
.env.test.local
@@ -63,103 +64,6 @@ share/python-wheels/
6364
*.egg
6465
MANIFEST
6566

66-
# PyInstaller
67-
# Usually these files are written by a python script from a template
68-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
69-
*.manifest
70-
*.spec
71-
72-
# Installer logs
73-
pip-log.txt
74-
pip-delete-this-directory.txt
75-
76-
# Unit test / coverage reports
77-
htmlcov/
78-
.tox/
79-
.nox/
80-
.coverage
81-
.coverage.*
82-
.cache
83-
nosetests.xml
84-
coverage.xml
85-
*.cover
86-
*.py,cover
87-
.hypothesis/
88-
.pytest_cache/
89-
90-
# Translations
91-
*.mo
92-
*.pot
93-
94-
# Django stuff:
95-
*.log
96-
local_settings.py
97-
db.sqlite3
98-
db.sqlite3-journal
99-
100-
# Flask stuff:
101-
instance/
102-
.webassets-cache
103-
104-
# Scrapy stuff:
105-
.scrapy
106-
107-
# Sphinx documentation
108-
docs/_build/
109-
110-
# PyBuilder
111-
target/
112-
113-
# Jupyter Notebook
114-
.ipynb_checkpoints
115-
116-
# IPython
117-
profile_default/
118-
ipython_config.py
119-
120-
# pyenv
121-
.python-version
122-
123-
# pipenv
124-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
125-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
126-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
127-
# install all needed dependencies.
128-
#Pipfile.lock
129-
130-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
131-
__pypackages__/
132-
133-
# Celery stuff
134-
celerybeat-schedule
135-
celerybeat.pid
136-
137-
# SageMath parsed files
138-
*.sage.py
139-
140-
# Environments
141-
.env
142-
.venv
143-
env/
144-
venv/
145-
ENV/
146-
env.bak/
147-
venv.bak/
148-
149-
# Spyder project settings
150-
.spyderproject
151-
.spyproject
152-
153-
# Rope project settings
154-
.ropeproject
155-
156-
# mkdocs documentation
157-
/backend/site
158-
159-
# mypy
160-
.mypy_cache/
161-
.dmypy.json
162-
dmypy.json
163-
164-
# Pyre type checker
165-
.pyre/
67+
# local code
68+
.swc/
69+
frontend/pages/account

Diff for: README.md

+3-24
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@
3030
<a href="https://tailwindcss.com/">
3131
<img src="https://img.shields.io/badge/TailwindCSS-06B6D4?style=for-the-badge&logo=Tailwind-CSS&logoColor=fff"/>
3232
</a>
33-
<a href="https://www.python.org/">
34-
<img src="https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=Python&logoColor=fff"/>
35-
</a>
36-
<a href="https://fastapi.tiangolo.com/">
37-
<img src="https://img.shields.io/badge/FastAPI-009688?style=for-the-badge&logo=FastAPI&logoColor=fff"/>
38-
</a>
3933
<a href="https://www.mongodb.com/">
4034
<img src="https://img.shields.io/badge/MongoDB-47A248?style=for-the-badge&logo=MongoDB&logoColor=fff"/>
4135
</a>
@@ -49,27 +43,11 @@ First, clone the repo:
4943
git clone https://github.com/AnoyiX/anoyi.git
5044
```
5145

52-
### 🚀 Run Server
53-
54-
This is a [FastAPI](https://github.com/tiangolo/fastapi) project.
55-
56-
```shell
57-
cd backend/
58-
59-
# install packages
60-
pip3 install -r requirements.txt
61-
62-
# run
63-
python3 run.py
64-
```
65-
66-
### 🚀 Run Web
46+
### 🚀 Local Development
6747

6848
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
6949

7050
```shell
71-
cd fontend/
72-
7351
# install packages
7452
yarn
7553

@@ -79,6 +57,7 @@ yarn dev
7957

8058
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
8159

82-
### Activity
60+
61+
## 🧿 Activity
8362

8463
![](https://repobeats.axiom.co/api/embed/a35b540b024b7b7aeac7ef2e9ec4340aab76cff3.svg)

Diff for: backend/api/__init__.py

-17
This file was deleted.

Diff for: backend/api/blog.py

-34
This file was deleted.

Diff for: backend/api/mongo.py

-40
This file was deleted.

Diff for: backend/api/stock.py

-45
This file was deleted.

Diff for: backend/api/video.py

-51
This file was deleted.

Diff for: backend/common/__init__.py

-3
This file was deleted.

Diff for: backend/config/__init__.py

-11
This file was deleted.

Diff for: backend/config/application.yml

-19
This file was deleted.

0 commit comments

Comments
 (0)