This is a client-side app for "Cite It" project. The app consists of couple of modals and 4 main pages including: Home, News Feed, Movies, and Edit Profile. Modals and several other UI components of the app are animated. App design is mobile friendly. As for static texts, they can be shown in Georgian and English languages.
1. First of all you need to clone cite-it-front repository from github:
https://github.com/GeekoIsaGeek/cite-it-front
2. Next step requires you to run npm install in order to install all dependencies.
npm install
3. Now we need to set our env file. Go to the root of your project and execute this command.
cp .env.example .env
And now you should provide .env file all the necessary environment variables:
API:
VITE_SERVER_URL=
Pusher:
VITE_PUSHER_APP_KEY=
VITE_PUSHER_APP_CLUSTER=
You can run development server by executing:
npm run dev
├─── public
├─── readme
├─── src
│ ├─── assets
│ ├─── components
│ ├─── composables
│ ├─── config
│ ├─── router
│ ├─── stores
│ ├─── utils
│ ├─── views
│ - App.vue
│ - main.js
- .env
- index.html
- postcss.config.js
- README.md
- tailwind.config.js
- vite.config.js