Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hzswdef/ouranimelist
https://github.com/hzswdef/ouranimelist
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hzswdef/ouranimelist
- Owner: hzswdef
- Created: 2024-06-10T23:08:55.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-13T10:42:04.000Z (8 months ago)
- Last Synced: 2024-12-05T15:14:33.039Z (2 months ago)
- Language: TypeScript
- Size: 254 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### OurAnimeList
A small project written with .NET 8 & React.
### Instructions
The following set up instructions is written for the Linux systems.
### BackEnd set up
```bash
# Configure app secrets file: secrets.json
cd OurAnimeList/
cp secrets.example.json secrets.json
nano secrets.json
cd ..# Up MySQL database container for the .NET app
cp ./environments/localhost/.env.example ./environments/localhost/.env
make up
```### FrontEnd set up
```bash
cd web-react/# Configure environment variables
cp .env.example .env
nano .envnpm install
# Ready to use :3
npm run dev
```